refactor(services): add OwnedPath struct

This commit is contained in:
Houkime 2023-04-17 14:54:42 +00:00 committed by Inex Code
parent df5b318fff
commit 6057e350ef

View file

@ -0,0 +1,7 @@
from pydantic import BaseModel
class OwnedPath(BaseModel):
path: str
owner: str
group: str