8 lines
163 B
Python
8 lines
163 B
Python
|
import datetime
|
||
|
|
||
|
class Module:
|
||
|
def data(self):
|
||
|
return datetime.datetime.now().strftime("%x %X")
|
||
|
|
||
|
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|