18 lines
507 B
C#
18 lines
507 B
C#
using System.Text.Json;
|
|
using Moonlight.ApiServer;
|
|
using Moonlight.ApiServer.Models;
|
|
using MoonlightServers.ApiServer.Startup;
|
|
|
|
// Development Server Startup
|
|
|
|
// This file is a small helper for development instances for moonlight.
|
|
// It calls the moonlight startup with the current project loaded as a plugin.
|
|
// This allows you to develop and debug projects without any hassle
|
|
|
|
// !!! DO NOT HARDCORE ANY SECRETS HERE !!!
|
|
|
|
var startup = new Startup();
|
|
|
|
await startup.Run(args, [
|
|
new PluginStartup()
|
|
]); |