This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Injectable() | |
| export class HttpCacheService { | |
| constructor(public _http: Http, | |
| public _cache: CacheService, | |
| @Inject("isNode") public isNode:boolean, | |
| @Inject("isBrowser") public isBrowser:boolean) { } | |
| get<T>(url, options?: RequestOptionsArgs, autoClear: boolean = true, browserCaching:boolean = false): Observable<T> { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| services: | |
| bla: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| System.out.println("Hello World") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| System.out.println("Hello World"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| terraform { | |
| required_providers { | |
| kubectl = { | |
| source = "gavinbunney/kubectl" | |
| } | |
| flux = { | |
| source = "fluxcd/flux" | |
| } | |
| } | |
| } |