2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2025-07-13 04:03:13 +00:00
Files
esiur-dotnet/Esiur.Examples.StandaloneWebServerDemo/Program.cs
2024-06-08 12:56:39 +03:00

22 lines
570 B
C#

using Esiur.Net.IIP;
using Esiur.Resource;
using Esiur.Stores;
internal class Program
{
private static async Task Main(string[] args)
{
// Create a store to keep objects.
var system = await Warehouse.Put("sys", new MemoryStore());
// Create a distibuted server
var esiurServer = await Warehouse.Put("sys/server", new DistributedServer());
// Add your object to the store
var service = await Warehouse.Put("sys/demo", new EsiurGreeter());
// Start your server
await Warehouse.Open();
}
}