BBS Server Structure

This commit is contained in:
2026-02-09 14:36:55 -06:00
parent 50a169cd89
commit 7732952e9c
5 changed files with 25 additions and 4 deletions

7
srv/avdefs.py Normal file
View File

@@ -0,0 +1,7 @@
from enum import Enum, auto
class AccountType(Enum):
ANON = auto()
LDAP = auto()
AKEY = auto()