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:
Macintxsh 2023-09-30 16:58:32 +03:00 committed by GitHub
parent 2e2f50908e
commit 804bcd6e68
Signed by: GitHub
GPG key ID: 4AEE18F83AFDEB23
53 changed files with 174 additions and 171 deletions

View file

@ -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.

View file

@ -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

View file

@ -1,4 +1,4 @@
namespace Boyfriend.Data;
namespace Octobot.Data;
/// <summary>
/// Stores information about a member

View file

@ -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.

View file

@ -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>
{

View file

@ -1,7 +1,7 @@
using System.Text.Json.Nodes;
using Remora.Results;
namespace Boyfriend.Data.Options;
namespace Octobot.Data.Options;
public interface IOption
{

View file

@ -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>

View file

@ -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.

View file

@ -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>
{

View file

@ -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>
{

View file

@ -1,4 +1,4 @@
namespace Boyfriend.Data;
namespace Octobot.Data;
public struct Reminder
{

View file

@ -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.