feat: add teambition driver

This commit is contained in:
Noah Hsu
2022-09-02 18:24:14 +08:00
parent bc155af255
commit 0f2425ce53
22 changed files with 523 additions and 30 deletions

View File

@ -31,7 +31,7 @@ type RootFolderPath struct {
RootFolder string `json:"root_folder" required:"true" help:"Root folder path"`
}
type RootFolderId struct {
type RootFolderID struct {
RootFolder string `json:"root_folder" required:"true" help:"Root folder id"`
}
@ -39,6 +39,6 @@ func (r RootFolderPath) GetRootFolderPath() string {
return r.RootFolder
}
func (r RootFolderId) GetRootFolderId() string {
func (r RootFolderID) GetRootFolderId() string {
return r.RootFolder
}