Commit f15c33b4 by 岳巧源

add new file

parent cff1df63
Showing with 15 additions and 0 deletions
import time
class User:
def __init__(self, name: str, password: str):
self.uid = self.generate_uid()
self.name = name
self.password = password
def generate_uid(self) -> str:
timestamp = time.time()
\ No newline at end of file
pass
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment