mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-28 21:12:13 +00:00
12 lines
303 B
Python
12 lines
303 B
Python
from abc import ABC, abstractmethod
|
|
from pydantic import BaseModel
|
|
from typing import Any, Callable, Dict, List, Mapping, Optional, Set, Union
|
|
|
|
|
|
class TestBase(BaseModel, ABC):
|
|
test_values: List = []
|
|
|
|
|
|
def test(self):
|
|
print(self.__class__.__name__ + ":" )
|
|
print(self.test_values) |