This repository has been archived on 2024-12-22. You can view files and clone it, but cannot push or open issues or pull requests.
elliebot/src/EllieBot/_common/CleverBotResponseStr.cs

10 lines
263 B
C#
Raw Normal View History

2024-09-20 11:23:21 +00:00
#nullable disable
using System.Runtime.InteropServices;
namespace EllieBot.Modules.Permissions;
[StructLayout(LayoutKind.Sequential, Size = 1)]
public readonly struct CleverBotResponseStr
{
public const string CLEVERBOT_RESPONSE = "CLEVERBOT:RESPONSE";
}