16 lines
249 B
TypeScript
16 lines
249 B
TypeScript
/** @file
|
|
* @author Edouard DUPIN
|
|
* @copyright 2018, Edouard DUPIN, all right reserved
|
|
* @license PROPRIETARY (see license file)
|
|
*/
|
|
|
|
import { Injectable } from '@angular/core';
|
|
|
|
@Injectable()
|
|
export class AuthService {
|
|
constructor() {
|
|
|
|
}
|
|
}
|
|
|