You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
160B

  1. using System.Threading.Tasks;
  2. namespace Campaign_Tracker.Server.Seed;
  3. public interface ISeedService
  4. {
  5. Task SeedAsync();
  6. Task<bool> IsSeededAsync();
  7. }

Powered by TurnKey Linux.