mirror of
https://github.com/RoboSats/robosats.git
synced 2024-12-13 19:06:26 +00:00
6 lines
147 B
Python
6 lines
147 B
Python
|
from celery import shared_task
|
||
|
from api.models import Order, LNPayment, Profile
|
||
|
|
||
|
@shared_task(name="do_accounting")
|
||
|
def do_accounting():
|
||
|
return
|