1 package com.atlassian.performance;
2
3 import com.google.inject.AbstractModule;
4
5 import static com.google.inject.matcher.Matchers.any;
6
7 public class TimeMethodModule extends AbstractModule
8 {
9 @Override
10 protected void configure()
11 {
12 bindInterceptor(any(), any(), new TimeMethodInterceptor());
13 }
14 }