here is some of files we would need later
This commit is contained in:
parent
9449311ebf
commit
879d862e28
3 changed files with 13 additions and 0 deletions
0
src/parch-profiler/__init__.py
Normal file
0
src/parch-profiler/__init__.py
Normal file
0
src/parch-profiler/cli.py
Normal file
0
src/parch-profiler/cli.py
Normal file
13
src/parch-profiler/profiler.py
Normal file
13
src/parch-profiler/profiler.py
Normal 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
|
Loading…
Add table
Reference in a new issue