mirror of
https://github.com/insistence/RuoYi-Vue3-FastAPI.git
synced 2026-09-22 05:02:58 +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()}执行了")
|