mirror of
https://github.com/esiur/esiur-js.git
synced 2025-05-06 12:32:58 +00:00
10 lines
245 B
JavaScript
10 lines
245 B
JavaScript
import Authentication from "./Authentication.js";
|
|
import AuthenticationType from "./AuthenticationType.js";
|
|
|
|
export default class HostAuthentication extends Authentication
|
|
{
|
|
constructor()
|
|
{
|
|
super(AuthenticationType.Host);
|
|
}
|
|
} |