mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-09-25 16:50:30 -04:00
9 lines
321 B
Python
9 lines
321 B
Python
from __future__ import annotations
|
|
|
|
from chia.full_node.full_node_rpc_api import FullNodeRpcApi
|
|
from chia.introducer.introducer import Introducer
|
|
from chia.introducer.introducer_api import IntroducerAPI
|
|
from chia.server.start_service import Service
|
|
|
|
IntroducerService = Service[Introducer, IntroducerAPI, FullNodeRpcApi]
|