summaryrefslogtreecommitdiff
path: root/lib/infrastructure/threading/ApplicationThread.cs
blob: 71eebd75fdb1d4250546be1540a84dc6daa4fcc9 (plain)
1
2
3
4
5
6
7
namespace gorilla.infrastructure.threading
{
    public interface ApplicationThread
    {
        T provide_slot_for<T>() where T : class, new();
    }
}