mirror of
https://github.com/zhenxun-org/zhenxun_bot.git
synced 2025-12-15 14:22:55 +08:00
12 lines
268 B
Python
12 lines
268 B
Python
from typing import Optional
|
|
from .group_manager import GroupManager
|
|
from pathlib import Path
|
|
from .data_source import init
|
|
|
|
# 群权限
|
|
group_manager: Optional[GroupManager] = GroupManager(
|
|
Path() / "data" / "manager" / "group_manager.json"
|
|
)
|
|
|
|
init(group_manager)
|