summaryrefslogtreecommitdiff
path: root/lib/infrastructure/proxies/Interceptor.cs
blob: bb22f84898f9f428abeb00b71fdd80680f40a03a (plain)
1
2
3
4
5
6
7
namespace gorilla.infrastructure.proxies
{
    public interface Interceptor
    {
        void intercept(Invocation invocation);
    }
}