Compare commits

..

No commits in common. "b3b1971dad3ed1f4224230f178505aa87df21beb" and "7a14583d6ac7da94f8c442382906678ed55f8429" have entirely different histories.

3 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,5 @@
using Tranga.MangaConnectors;
using System.Text;
using Tranga.MangaConnectors;
namespace Tranga.Jobs;

View File

@ -1,5 +1,6 @@
using System.Net;
using System.Net.Http.Headers;
using System.Text.RegularExpressions;
using Logging;
namespace Tranga.LibraryConnectors;

View File

@ -27,8 +27,6 @@ public partial class Tranga : GlobalBase
jobBoss = new(this, this._connectors);
StartJobBoss();
this._server = new Server(this);
string[] emojis = { "(•‿•)", "(づ \u25d5‿\u25d5 )づ", "( \u02d8\u25bd\u02d8)っ\u2668", "=\uff3e\u25cf \u22cf \u25cf\uff3e=", "(ΦωΦ)", "(\u272a\u3268\u272a)", "( ノ・o・ )ノ", "(〜^\u2207^ )〜", "~(\u2267ω\u2266)~","૮ \u00b4• ﻌ \u00b4• ა", "(\u02c3ᆺ\u02c2)", "(=\ud83d\udf66 \u0f1d \ud83d\udf66=)"};
SendNotifications("Tranga Started", emojis[Random.Shared.Next(0,emojis.Length-1)]);
}
public MangaConnector? GetConnector(string name)