Skip to content

Instantly share code, notes, and snippets.

@miquelbeltran
Last active February 12, 2016 12:18
Show Gist options
  • Save miquelbeltran/5341a87500be820a0a2b to your computer and use it in GitHub Desktop.
Save miquelbeltran/5341a87500be820a0a2b to your computer and use it in GitHub Desktop.
public class GameData {
public final String hello = "Hello Dagger";
}
import javax.inject.Inject;
public class GameSession {
@Inject
public GameData data;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment