Updated EllieHub to 1.0.2.0

This commit is contained in:
Toastie 2024-07-02 01:55:23 +12:00
parent fe5c273143
commit 7429e0298a
Signed by: toastie_t0ast
GPG key ID: 27F3B6855AFD40A4
95 changed files with 948 additions and 437 deletions
EllieHub/Common

View file

@ -3,7 +3,7 @@ namespace EllieHub.Common;
/// <summary>
/// Defines the constants used throughout the whole application.
/// </summary>
public static class AppConstants
public static class AppConstants
{
/// <summary>
/// Defines the location of the default image for the bot avatar.
@ -14,4 +14,9 @@ public static class AppConstants
/// The name for an <see cref="HttpClient"/> that does not automatically follow redirect responses.
/// </summary>
public const string NoRedirectClient = "NoRedirect";
/// <summary>
/// The name for an <see cref="HttpClient"/> that makes calls to the Toastielab API.
/// </summary>
public const string ToastielabClient = "NoRedirect";
}