mirror of
https://github.com/babalae/better-genshin-impact.git
synced 2026-04-06 11:55:31 +08:00
11 lines
193 B
C#
11 lines
193 B
C#
namespace MicaSetup.Design.Controls;
|
|
|
|
public static class Hosting
|
|
{
|
|
public static IHostBuilder CreateBuilder()
|
|
{
|
|
HostBuilder builder = new();
|
|
return builder;
|
|
}
|
|
}
|