refactor(services): add OwnedPath struct

pull/35/head
Houkime 2023-04-17 14:54:42 +00:00 committed by Inex Code
parent df5b318fff
commit 6057e350ef
1 changed files with 7 additions and 0 deletions

View File

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