UNPKG
@jumamiller/auth-ng
Version:
latest (1.0.0)
1.0.0
Auth package for angular
@jumamiller/auth-ng
/
auth.module.ts
12 lines
(10 loc)
•
262 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
{ NgModule }
from
'@angular/core'
;
import
{ CommonModule }
from
'@angular/common'
;
import
{ AuthRoutingModule }
from
'./auth-routing.module'
;
@NgModule(
{ imports: [ CommonModule, AuthRoutingModule ] }
)
export
class
AuthModule
{ }