Skip to content

Instantly share code, notes, and snippets.

@RyPope
Created February 5, 2019 05:06
Show Gist options
  • Save RyPope/9c0cc539398acbfed4e43f41c6346bfc to your computer and use it in GitHub Desktop.
Save RyPope/9c0cc539398acbfed4e43f41c6346bfc to your computer and use it in GitHub Desktop.
public class Injector {
public static ExampleComponent getInjector(final Context context) {
return DaggerExampleComponent
.builder()
.dynamoDBModule(new DynamoDBModule())
.lambdaModule(new LambdaModule(context))
.build();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment