11 lines
194 B
Python
11 lines
194 B
Python
class MyDate:
|
|
timestamp = None
|
|
|
|
@classmethod
|
|
def set_timestamp(cls, timestamp):
|
|
cls.timestamp = timestamp
|
|
|
|
@classmethod
|
|
def utcnow(cls):
|
|
return cls.timestamp
|