mirror of
https://github.com/insistence/RuoYi-Vue3-FastAPI.git
synced 2026-09-21 04:46:28 +00:00
8 lines
132 B
Python
8 lines
132 B
Python
from datetime import datetime
|
|
|
|
|
|
def job(*args, **kwargs):
|
|
print(args)
|
|
print(kwargs)
|
|
print(f'{datetime.now()}执行了')
|