2025-03-19 16:30:27 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
|
|
namespace BeWo.Service.ServiceProxy
|
|
|
|
|
|
{
|
|
|
|
|
|
public static class ServiceFacade
|
|
|
|
|
|
{
|
2025-04-02 16:01:21 +02:00
|
|
|
|
private static readonly Lazy<OpenWebUIFacade> _OpenWebUIFacade = new Lazy<OpenWebUIFacade>(() => new OpenWebUIFacade());
|
2025-03-19 16:30:27 +01:00
|
|
|
|
|
2025-04-02 16:01:21 +02:00
|
|
|
|
public static OpenWebUIFacade OpenWebUI => _OpenWebUIFacade.Value;
|
2025-03-19 16:30:27 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|