96. Creating service (#12 Section 14: Authentication service)

This commit is contained in:
Art
2021-09-12 10:19:45 +03:00
parent ff5688ca4a
commit 6817e13f33
4 changed files with 50 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import {Injectable} from '@angular/core';
@Injectable({
providedIn: 'root'
})
export class UserService {
constructor() { }
}