forgejo-notifications-core/src/auth.ts

13 lines
164 B
TypeScript
Raw Normal View History

2023-09-18 17:56:40 +05:30
class Auth {
token: string;
constructor(token: string) {
this.token = token;
}
getToken(): string {
return this.token;
}
}
export default Auth;