8 lines
124 B
Python
8 lines
124 B
Python
from datetime import datetime
|
|
|
|
class Timestamp:
|
|
@staticmethod
|
|
def now() -> str:
|
|
return str(datetime.now())
|
|
|