mirror of
https://github.com/lampame/lampac-ukraine.git
synced 2026-04-16 17:32:20 +00:00
25 lines
643 B
C#
25 lines
643 B
C#
using Shared;
|
|
using Shared.Models.Online.Settings;
|
|
using Shared.Models.Module;
|
|
|
|
namespace Unimay
|
|
{
|
|
public class ModInit
|
|
{
|
|
public static OnlinesSettings Unimay;
|
|
|
|
/// <summary>
|
|
/// модуль загружен
|
|
/// </summary>
|
|
public static void loaded(InitspaceModel initspace)
|
|
{
|
|
Unimay = new OnlinesSettings("Unimay", "https://api.unimay.media/v1", streamproxy: false)
|
|
{
|
|
displayname = "Unimay"
|
|
};
|
|
|
|
// Виводити "уточнити пошук"
|
|
AppInit.conf.online.with_search.Add("unimay");
|
|
}
|
|
}
|
|
} |