public static IWebHost BuildWebHost(string[] args) => BypassAuthHost.Build(args);
        public static IWebHost Build(string[] args)
        {
            var host = new BypassAuthHost(args);

            return(host.Server);
        }