5 lines
76 B
Python
5 lines
76 B
Python
|
|
def create_player(player_id, name):
|
||
|
|
return {
|
||
|
|
"name": name
|
||
|
|
}
|