mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-10-21 08:59:03 +00:00
13 lines
356 B
Python
13 lines
356 B
Python
#!/usr/bin/env python3
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from auto_gpt_plugin_template import AutoGPTPluginTemplate
|
|
from pilot.singleton import Singleton
|
|
|
|
class Config(metaclass=Singleton):
|
|
"""Configuration class to store the state of bools for different scripts access"""
|
|
def __init__(self) -> None:
|
|
"""Initialize the Config class"""
|
|
pass
|
|
|