blob: 18c21fbdb850ab495e4df2e596ed60104eacc871 [file] [log] [blame]
package test.guice;
public class MyContextImpl implements MyContext {
private final MySession mySession = new MySession();
@Override
public MySession getSession() {
return mySession;
}
}