mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-09-06 08:16:02 +00:00
6 lines
105 B
Python
6 lines
105 B
Python
class User:
|
|
def __init__(self, db):
|
|
self.db = db
|
|
|
|
def save(self):
|
|
return self.db
|