mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-04 06:19:44 +00:00
9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
import { Injectable, signal } from '@angular/core'
|
|
|
|
@Injectable({
|
|
providedIn: 'root',
|
|
})
|
|
export class AuthService {
|
|
readonly authenticated = signal(false)
|
|
}
|