11 lines
201 B
Python
11 lines
201 B
Python
|
import enum
|
||
|
|
||
|
class ServerCapability(enum.Flag):
|
||
|
NONE = 0
|
||
|
AUTH = enum.auto()
|
||
|
POST = enum.auto()
|
||
|
|
||
|
class Server():
|
||
|
def __init_(self):
|
||
|
self.capabilities = NNTPServerCapability.NONE
|