1 Star 0 Fork 0

chenyang / casdoor-go-sdk

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
resource_global.go 1.82 KB
一键复制 编辑 原始数据 按行查看 历史
hsluoyz 提交于 2023-10-19 14:32 . feat: use object as API param, fix bugs
// Copyright 2023 The Casdoor Authors. All Rights Reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package casdoorsdk
func GetResource(id string) (*Resource, error) {
return globalClient.GetResource(id)
}
func GetResourceEx(owner, name string) (*Resource, error) {
return globalClient.GetResourceEx(owner, name)
}
func GetResources(owner, user, field, value, sortField, sortOrder string) ([]*Resource, error) {
return globalClient.GetResources(owner, user, field, value, sortField, sortOrder)
}
func GetPaginationResources(owner, user, field, value string, pageSize, page int, sortField, sortOrder string) ([]*Resource, error) {
return globalClient.GetPaginationResources(owner, user, field, value, pageSize, page, sortField, sortOrder)
}
func UploadResource(user string, tag string, parent string, fullFilePath string, fileBytes []byte) (string, string, error) {
return globalClient.UploadResource(user, tag, parent, fullFilePath, fileBytes)
}
func UploadResourceEx(user string, tag string, parent string, fullFilePath string, fileBytes []byte, createdTime string, description string) (string, string, error) {
return globalClient.UploadResourceEx(user, tag, parent, fullFilePath, fileBytes, createdTime, description)
}
func DeleteResource(resource *Resource) (bool, error) {
return globalClient.DeleteResource(resource)
}
Go
1
https://gitee.com/chenyang34/casdoor-go-sdk.git
git@gitee.com:chenyang34/casdoor-go-sdk.git
chenyang34
casdoor-go-sdk
casdoor-go-sdk
v0.41.2

搜索帮助