13 lines
545 B
C#
13 lines
545 B
C#
namespace HellionChat.Integrations;
|
|
|
|
// External URLs for the third-party plugins HellionChat integrates with.
|
|
// Kept separate from BrandingLinks (which is for Hellion-owned URLs) so
|
|
// future cycles can extend this file with maintainer attribution links
|
|
// for Moodles, NotificationMaster, ExtraChat, etc. without polluting the
|
|
// brand-links class.
|
|
internal static class IntegrationLinks
|
|
{
|
|
public const string HonorificRepo = "https://github.com/Caraxi/Honorific";
|
|
public const string HonorificAuthor = "https://github.com/Caraxi";
|
|
}
|