From 3b155acf9e864755c801930288db6a6fa0f19ef2 Mon Sep 17 00:00:00 2001 From: naudachu Date: Wed, 21 Jun 2023 21:02:03 +0500 Subject: [PATCH] - domain Cloud into domain --- domain/cloud.go | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/domain/cloud.go b/domain/cloud.go index 1fd744b..84c66b2 100644 --- a/domain/cloud.go +++ b/domain/cloud.go @@ -1,8 +1,7 @@ package domain -type Cloud struct { - FolderName string // k - FolderPath string // /temp/k - FolderURL string // http://82.151.222.22:7000/apps/files/?dir=/temp/k - PrivateURL string // http://82.151.222.22:7000/f/00000 +type Folder struct { + Title string // k + PathTo string // /temp/k + PrivateURL string // http://domain/apps/files/?dir=/temp/k OR http://domain/f/3333 }