14 lines
197 B
Python
14 lines
197 B
Python
from peewee import *
|
|
from models.base import BaseModel
|
|
import datetime
|
|
|
|
class Container(BaseModel):
|
|
# Container
|
|
name =
|
|
# players =
|
|
port =
|
|
|
|
# RCON
|
|
rcon_port =
|
|
rcon_pwd =
|