mirror of
https://github.com/PaiGramTeam/PaiGram.git
synced 2024-11-25 09:37:30 +00:00
9 lines
167 B
Python
9 lines
167 B
Python
from core.service import init_service
|
|
from .service import AssetsService
|
|
|
|
|
|
@init_service
|
|
def create_wiki_service():
|
|
_service = AssetsService()
|
|
return _service
|