mirror of
				https://github.com/esiur/esiur-js.git
				synced 2025-11-03 02:41:36 +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);
 | 
						|
    }
 | 
						|
} |