mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
10 lines
227 B
Python
10 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:
|
|
...
|