platform: modularize api/gui, add docs-tests-web foundation, and refresh root config
This commit is contained in:
20
selective-vpn-gui/main_window/singbox_mixin.py
Normal file
20
selective-vpn-gui/main_window/singbox_mixin.py
Normal file
@@ -0,0 +1,20 @@
|
||||
from __future__ import annotations
|
||||
|
||||
from main_window.singbox import (
|
||||
SingBoxCardsMixin,
|
||||
SingBoxEditorMixin,
|
||||
SingBoxLinksMixin,
|
||||
SingBoxRuntimeMixin,
|
||||
)
|
||||
|
||||
|
||||
class SingBoxMainWindowMixin(
|
||||
SingBoxRuntimeMixin,
|
||||
SingBoxLinksMixin,
|
||||
SingBoxCardsMixin,
|
||||
SingBoxEditorMixin,
|
||||
):
|
||||
"""Facade mixin for backward-compatible MainWindow inheritance."""
|
||||
|
||||
|
||||
__all__ = ["SingBoxMainWindowMixin"]
|
||||
Reference in New Issue
Block a user