10 lines
116 B
Python
10 lines
116 B
Python
from dramatiq import actor
|
|
|
|
|
|
@actor
|
|
def test_actor():
|
|
import time
|
|
|
|
time.sleep(2)
|
|
print("done sleeping")
|