8 lines
116 B
Python
8 lines
116 B
Python
from data.cat import Cat
|
|
|
|
|
|
def shelter():
|
|
# TODO: make
|
|
name = input("Name your cat: ")
|
|
return Cat(name)
|