mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-07 08:26:11 +00:00
8 lines
112 B
Python
8 lines
112 B
Python
class Model:
|
|
def save(self) -> None:
|
|
pass
|
|
|
|
|
|
class Container:
|
|
def get(self):
|
|
return None
|