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