main
1namespace gorilla.commons.utility
2{
3    public interface Parser<T>
4    {
5        T parse();
6    }
7}