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