7 lines
87 B
Python
7 lines
87 B
Python
|
import dramatiq
|
||
|
|
||
|
@dramatiq.actor()
|
||
|
def generate_pdf(url: str):
|
||
|
print(url)
|
||
|
pass
|