mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-27 21:44:21 +00:00
11 lines
227 B
Python
11 lines
227 B
Python
|
from typing import *
|
||
|
import royalnet
|
||
|
import royalnet.commands as rc
|
||
|
import abc
|
||
|
|
||
|
|
||
|
class LinkerCommand(rc.Command, metaclass=abc.ABCMeta):
|
||
|
|
||
|
async def run(self, args: rc.CommandArgs, data: rc.CommandData) -> None:
|
||
|
...
|