mirror of https://github.com/ghostfolio/ghostfolio
committed by
GitHub
22 changed files with 45 additions and 33 deletions
@ -0,0 +1,5 @@ |
|||
export interface GfEnvironment { |
|||
lastPublish: string | null; |
|||
production: boolean; |
|||
stripePublicKey: string; |
|||
} |
|||
@ -0,0 +1,7 @@ |
|||
import { InjectionToken } from '@angular/core'; |
|||
|
|||
import { GfEnvironment } from './environment.interface'; |
|||
|
|||
export const GF_ENVIRONMENT = new InjectionToken<GfEnvironment>( |
|||
'GF_ENVIRONMENT' |
|||
); |
|||
@ -0,0 +1,2 @@ |
|||
export * from './environment.interface'; |
|||
export * from './environment.token'; |
|||
@ -1 +1,2 @@ |
|||
export * from './admin.service'; |
|||
export * from './data.service'; |
|||
|
|||
Loading…
Reference in new issue