UNPKG
swagger-pack
Version:
latest (1.0.4)
1.0.4
1.0.2
1.0.1
1.0.0
test of swagger generated angular models/services and possibility to reuse them
swagger-pack
/
src
/
api-configuration.ts
13 lines
(11 loc)
•
233 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/* tslint:disable */
import
{
Injectable
}
from
'@angular/core'
;
/** * Global configuration for Api services */
@Injectable
({
providedIn
:
'root'
, })
export
class
ApiConfiguration
{
rootUrl
:
string
=
'http://localhost:9001'
; }