文件名称:go-api:用Golang编写的实践api
文件大小:5KB
文件格式:ZIP
更新时间:2024-04-19 09:38:19
Go
用go编写的简单练习器api 卡桑德拉DB 创建体积 docker volume create --name=cassandra-data 创建数据库 docker-compose up -d 创建键空间 CREATE KEYSPACE go_db WITH replication = { ' class ' : ' SimpleStrategy ' , ' replication_factor ' : 1} ; 创建用户表 CREATE TABLE IF NOT EXISTS users ( user_id uuid, username text, name text, email text, phone text, PRIMARY KEY (user_id, username) ) ; 新增使用者 INSERT INTO users (u
【文件预览】:
go-api-main
----.gitignore(6B)
----go.mod(150B)
----src()
--------main.go(556B)
----pkg()
--------read()
--------rest()
--------storage()
----go.sum(2KB)
----docker-compose.yaml(399B)
----README.md(753B)