working commit

This commit is contained in:
2026-01-26 18:36:30 +02:00
parent 15e4e893b1
commit 6db319088e
19 changed files with 621 additions and 95 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
package auxtool
import (
"time"
"time"
)
func TimeNow() string {
return time.Now().Format(time.RFC3339)
return time.Now().Format(time.RFC3339)
}
+2 -2
View File
@@ -1,11 +1,11 @@
package auxuuid
import (
"github.com/google/uuid"
"github.com/google/uuid"
)
const ZeroUUID = "00000000-0000-0000-0000-000000000000"
func NewUUID() string {
return uuid.New().String()
return uuid.New().String()
}
+2 -3
View File
@@ -1,10 +1,9 @@
package client
type Client struct {
}
func (cli *Client) FileExists(path string) (bool, error) {
//reqPath = fmt.Sprintf("/v3/api/file/%s", path)
//request, err := http.NewRequest("HEAD", reqPath, nil)
//reqPath = fmt.Sprintf("/v3/api/file/%s", path)
//request, err := http.NewRequest("HEAD", reqPath, nil)
}