2021-06-17 21:20:26 +02:00

12 lines
192 B
Python

class MyDate:
timestamp = None
@classmethod
def set_timestamp(cls, timestamp):
cls.timestamp = timestamp
@classmethod
def now(cls):
return cls.timestamp