refactor(services): add OwnedPath struct

restic-rewrite-api
Houkime 2023-04-17 14:54:42 +00:00
parent a664ab3dd4
commit 0b7d2d0bf4
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