kenken999's picture
test
1f074d8
raw
history blame
177 Bytes
from api.models import Team
from api.schemas import TeamSchema
def create_team(name: str):
team = Team(name=name)
session.add(team)
session.commit()
return team