refactored program

This commit is contained in:
2020-04-08 20:23:22 +02:00
parent 6dea82b973
commit 70a77f3472
18 changed files with 213 additions and 199 deletions

View File

@@ -0,0 +1,9 @@
using System.Threading.Tasks;
namespace FarmmapsApi
{
public interface IApplication
{
Task RunAsync();
}
}