chore: update lnurl lib to v0.8.0 (#102)
This commit is contained in:
parent
a242f0e4b6
commit
e48be221b1
12 changed files with 2356 additions and 574 deletions
13
__init__.py
13
__init__.py
|
|
@ -1,5 +1,4 @@
|
|||
import asyncio
|
||||
from typing import List
|
||||
|
||||
from fastapi import APIRouter
|
||||
|
||||
|
|
@ -29,7 +28,7 @@ lnurlp_ext.include_router(lnurlp_generic_router)
|
|||
lnurlp_ext.include_router(lnurlp_api_router)
|
||||
lnurlp_ext.include_router(lnurlp_lnurl_router)
|
||||
|
||||
scheduled_tasks: List[asyncio.Task] = []
|
||||
scheduled_tasks: list[asyncio.Task] = []
|
||||
|
||||
|
||||
def lnurlp_stop():
|
||||
|
|
@ -45,10 +44,10 @@ def lnurlp_start():
|
|||
|
||||
|
||||
__all__ = [
|
||||
"lnurlp_ext",
|
||||
"lnurlp_static_files",
|
||||
"lnurlp_redirect_paths",
|
||||
"lnurlp_stop",
|
||||
"lnurlp_start",
|
||||
"db",
|
||||
"lnurlp_ext",
|
||||
"lnurlp_redirect_paths",
|
||||
"lnurlp_start",
|
||||
"lnurlp_static_files",
|
||||
"lnurlp_stop",
|
||||
]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue