Skip to content

Instantly share code, notes, and snippets.

@NetanelBasal
Created May 19, 2022 07:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NetanelBasal/86da258aa0709523c9f495f2b6d40990 to your computer and use it in GitHub Desktop.
Save NetanelBasal/86da258aa0709523c9f495f2b6d40990 to your computer and use it in GitHub Desktop.
export const HTTP = new InjectionToken('', {
providedIn: 'root',
factory() {
return inject(HttpClient);
},
});
@Injectable()
export class FooService {
http = inject(HttpClient);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment