Skip to content
This repository was archived by the owner on Nov 24, 2022. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions TabletBot.Common/IAsyncInitialize.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
using System.Threading.Tasks;

namespace TabletBot.Common
{
public interface IAsyncInitialize
{
Task InitializeAsync();
}
}
1 change: 1 addition & 0 deletions TabletBot.Common/Settings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ public sealed class Settings
public string GitHubToken { set; get; } = null;
public string CommandPrefix { set; get; } = "!";
public uint GitHubIssueRefLimit { set; get; } = 3;
public uint SpamThreshold { set; get; } = 3;

public LogLevel LogLevel { set; get; } = LogLevel.Debug;

Expand Down
134 changes: 0 additions & 134 deletions TabletBot.Discord/Bot.Commands.cs

This file was deleted.

Loading