using System.Threading.Tasks;

namespace FarmmapsApi
{
    public interface IApplication
    {
        Task RunAsync();
    }
}