here is some of files we would need later

This commit is contained in:
misano 2024-08-23 02:12:39 +03:30
parent 9449311ebf
commit 879d862e28
3 changed files with 13 additions and 0 deletions

View file

View file

View file

@ -0,0 +1,13 @@
from typing import List
import toml
from pydantic import BaseModel
from .pckmng import PackageConfig
class Config(BaseModel):
packages: List[PackageConfig]
class Profiler:
pass