RegexBot/Common/Messages.cs
Noi 1149f2800d Reorganized project
Moved modules into the assembly itself to simplify development of
further features and reduce complexity in building this project.

Additionally, many small adjustments were made, including:
- Add documentation to most public methods that had it missing
- Minor style updates
- Updated readme to reflect near-completion of this rewrite
- Remove any last remaining references to old project name Kerobot
- Update dependencies
2022-07-20 18:55:08 -07:00

10 lines
No EOL
380 B
C#

namespace RegexBot.Common;
/// <summary>
/// Commonly used strings used throughout the bot and modules.
/// </summary>
public static class Messages {
/// <summary>
/// Gets a string generally appropriate to display in the event of a 403 error.
/// </summary>
public const string ForbiddenGenericError = "Failed to perform the action due to a permissions issue.";
}