工具基本实现write功能

This commit is contained in:
2025-04-02 19:34:36 +08:00
parent e59ff65c0d
commit 0344c09ce7
20 changed files with 918 additions and 189 deletions

16
pkg/saashttp/cfg.go Normal file
View File

@@ -0,0 +1,16 @@
package saashttp
type ApiUrls struct {
BaseUrl string
WritePath string
ReadPath string
ColumnWritePath string
TaskListPath string
TaskCancelPath string
TaskDetailPath string
}
type Auth struct {
Account string
Token string
}