forked from TeamInklings/Octobot
Rebrand to Octobot (#128)
We're moving! --------- Signed-off-by: Macintosh II <mctaylxrs@outlook.com> Signed-off-by: Macintosh II <95250141+mctaylors@users.noreply.github.com> Co-authored-by: Octol1ttle <l1ttleofficial@outlook.com>
This commit is contained in:
parent
2e2f50908e
commit
804bcd6e68
53 changed files with 174 additions and 171 deletions
|
@ -1,7 +1,7 @@
|
|||
using System.Text.Json.Nodes;
|
||||
using Remora.Rest.Core;
|
||||
|
||||
namespace Boyfriend.Data;
|
||||
namespace Octobot.Data;
|
||||
|
||||
/// <summary>
|
||||
/// Stores information about a guild. This information is not accessible via the Discord API.
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
using Boyfriend.Data.Options;
|
||||
using Boyfriend.Responders;
|
||||
using Octobot.Data.Options;
|
||||
using Octobot.Responders;
|
||||
using Remora.Discord.API.Abstractions.Objects;
|
||||
|
||||
namespace Boyfriend.Data;
|
||||
namespace Octobot.Data;
|
||||
|
||||
/// <summary>
|
||||
/// Contains all per-guild settings that can be set by a member
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
namespace Boyfriend.Data;
|
||||
namespace Octobot.Data;
|
||||
|
||||
/// <summary>
|
||||
/// Stores information about a member
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using Boyfriend.Commands;
|
||||
using JetBrains.Annotations;
|
||||
using Octobot.Commands;
|
||||
|
||||
namespace Boyfriend.Data.Options;
|
||||
namespace Octobot.Data.Options;
|
||||
|
||||
/// <summary>
|
||||
/// Represents all options as enums.
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using System.Text.Json.Nodes;
|
||||
using Remora.Results;
|
||||
|
||||
namespace Boyfriend.Data.Options;
|
||||
namespace Octobot.Data.Options;
|
||||
|
||||
public sealed class BoolOption : Option<bool>
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using System.Text.Json.Nodes;
|
||||
using Remora.Results;
|
||||
|
||||
namespace Boyfriend.Data.Options;
|
||||
namespace Octobot.Data.Options;
|
||||
|
||||
public interface IOption
|
||||
{
|
||||
|
|
|
@ -3,7 +3,7 @@ using System.Text.Json.Nodes;
|
|||
using Remora.Discord.Extensions.Formatting;
|
||||
using Remora.Results;
|
||||
|
||||
namespace Boyfriend.Data.Options;
|
||||
namespace Octobot.Data.Options;
|
||||
|
||||
/// <inheritdoc />
|
||||
public sealed class LanguageOption : Option<CultureInfo>
|
||||
|
|
|
@ -2,7 +2,7 @@ using System.Text.Json.Nodes;
|
|||
using Remora.Discord.Extensions.Formatting;
|
||||
using Remora.Results;
|
||||
|
||||
namespace Boyfriend.Data.Options;
|
||||
namespace Octobot.Data.Options;
|
||||
|
||||
/// <summary>
|
||||
/// Represents an per-guild option.
|
||||
|
|
|
@ -4,7 +4,7 @@ using Remora.Discord.Extensions.Formatting;
|
|||
using Remora.Rest.Core;
|
||||
using Remora.Results;
|
||||
|
||||
namespace Boyfriend.Data.Options;
|
||||
namespace Octobot.Data.Options;
|
||||
|
||||
public sealed partial class SnowflakeOption : Option<Snowflake>
|
||||
{
|
||||
|
|
|
@ -2,7 +2,7 @@ using System.Text.Json.Nodes;
|
|||
using Remora.Commands.Parsers;
|
||||
using Remora.Results;
|
||||
|
||||
namespace Boyfriend.Data.Options;
|
||||
namespace Octobot.Data.Options;
|
||||
|
||||
public sealed class TimeSpanOption : Option<TimeSpan>
|
||||
{
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
namespace Boyfriend.Data;
|
||||
namespace Octobot.Data;
|
||||
|
||||
public struct Reminder
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
using System.Text.Json.Serialization;
|
||||
using Remora.Discord.API.Abstractions.Objects;
|
||||
|
||||
namespace Boyfriend.Data;
|
||||
namespace Octobot.Data;
|
||||
|
||||
/// <summary>
|
||||
/// Stores information about scheduled events. This information is not provided by the Discord API.
|
||||
|
|
Reference in a new issue