mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-04 06:04:39 -04:00
24 lines
284 B
TypeScript
24 lines
284 B
TypeScript
import { Injectable } from "@angular/core";
|
|
import { Account } from "../models/account";
|
|
|
|
@Injectable({
|
|
providedIn: "root"
|
|
})
|
|
export class AuthService
|
|
{
|
|
isAuthenticated: boolean = false;
|
|
account: Account = null;
|
|
|
|
constructor()
|
|
{
|
|
}
|
|
|
|
login(): void
|
|
{
|
|
}
|
|
|
|
logout(): void
|
|
{
|
|
}
|
|
}
|