12 lines
192 B
Python
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
|
|
|