1 Star 2 Fork 0

api-go/iris

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
users.go 801 Bytes
一键复制 编辑 原始数据 按行查看 历史
// file: datasource/users.go
package datasource
import (
"errors"
"github.com/kataras/iris/_examples/mvc/login/datamodels"
)
// Engine is from where to fetch the data, in this case the users.
type Engine uint32
const (
// Memory stands for simple memory location;
// map[int64] datamodels.User ready to use, it's our source in this example.
Memory Engine = iota
// Bolt for boltdb source location.
Bolt
// MySQL for mysql-compatible source location.
MySQL
)
// LoadUsers returns all users(empty map) from the memory, for the shake of simplicty.
func LoadUsers(engine Engine) (map[int64]datamodels.User, error) {
if engine != Memory {
return nil, errors.New("for the shake of simplicity we're using a simple map as the data source")
}
return make(map[int64]datamodels.User), nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/netscript/iris.git
git@gitee.com:netscript/iris.git
netscript
iris
iris
v11.1.1

搜索帮助

D67c1975 1850385 1daf7b77 1850385