Kyoo/front/projects/host/src/app/auth/auth.service.ts
2022-04-23 23:41:43 +02:00

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
{
}
}