summaryrefslogtreecommitdiff
path: root/lib/utility/Parser.cs
blob: 7e0d861f2eb73ae2b7b8c2fd1180a47ac96ea14b (plain)
1
2
3
4
5
6
7
namespace gorilla.utility
{
    public interface Parser<out T>
    {
        T parse();
    }
}