2
0
mirror of https://github.com/esiur/esiur-js.git synced 2025-05-06 12:32:58 +00:00
esiur-js/src/Security/Authority/HostAuthentication.js
2021-03-10 01:25:20 +03:00

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);
}
}