10 lines
163 B
Python
10 lines
163 B
Python
from .base import BaseTool
|
|
from module import singleton
|
|
|
|
|
|
@singleton
|
|
class AuthTool(BaseTool):
|
|
@property
|
|
def tool_name(self) -> str:
|
|
return "auth"
|