Spaces:
Running
on
Zero
Running
on
Zero
File size: 177 Bytes
1f074d8 |
1 2 3 4 5 6 7 8 |
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 |