mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
13 lines
268 B
Python
13 lines
268 B
Python
from typing import Type
|
|
|
|
from .charybdis import CharybdisController
|
|
|
|
|
|
class SolanumController(CharybdisController):
|
|
software_name = "Solanum"
|
|
binary_name = "solanum"
|
|
|
|
|
|
def get_irctest_controller_class() -> Type[SolanumController]:
|
|
return SolanumController
|