11 lines
136 B
C++
11 lines
136 B
C++
#pragma once
|
|
|
|
namespace tw::chat {
|
|
|
|
enum class ChatServerError {
|
|
PermissionDenied,
|
|
ChannelNotFound,
|
|
};
|
|
|
|
} // namespace tw::chat
|