From 9ed742755fd500349372b41ef11314de06b29aff Mon Sep 17 00:00:00 2001 From: jinyaoMa Date: Wed, 14 Sep 2022 22:57:03 -0400 Subject: [PATCH] . --- README.md | 30 +++++++++++++++--------------- go.mod | 2 +- go.sum | 3 ++- 3 files changed, 18 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index ba63795..34e0475 100644 --- a/README.md +++ b/README.md @@ -16,18 +16,18 @@ Prepare and install environment for development in Window 10/11? ## Technologies -| Technology | Role | Sources | -| :---------- | :------------------------------------------------------- | :------------------------------------ | -| Go | Backend programming language | https://pkg.go.dev/std | -| TypeScript | Frontend programming language | https://typescriptlang.org/ | -| Vite | Next Generation Frontend Tooling | https://vitejs.dev/ | -| Vue 3 | Progressive JavaScript Framework | https://vuejs.org/ | -| Wails | Build cross-platform desktop applications using Go | https://wails.io/ | -| UPX | Ultimate packer for executables | https://upx.github.io/ | -| Systray | A cross platfrom system tray using Go | https://github.com/getlantern/systray | -| Gin | A HTTP web framework using Go | https://gin-gonic.com/ | -| Gin Swagger | Gin middleware for API documentation with Swagger 2.0 | https://github.com/swaggo/gin-swagger | -| Swaggo | Converts Go annotations to Swagger Documentation 2.0 | https://github.com/swaggo/swag | -| Air | Live reload and test for API service | https://github.com/cosmtrek/air | -| Gorm | ORM library for Go | https://gorm.io/ | -| SQLite | C-language library that implements a SQL database engine | https://www.sqlite.org/ | +| Technology | Role | Sources | +| :---------- | :---------------------------------------------------- | :------------------------------------ | +| Go | Backend programming language | https://pkg.go.dev/std | +| TypeScript | Frontend programming language | https://typescriptlang.org/ | +| Vite | Next Generation Frontend Tooling | https://vitejs.dev/ | +| Vue 3 | Progressive JavaScript Framework | https://vuejs.org/ | +| Wails | Build cross-platform desktop applications using Go | https://wails.io/ | +| UPX | Ultimate packer for executables | https://upx.github.io/ | +| Systray | A cross platfrom system tray using Go | https://github.com/getlantern/systray | +| Gin | A HTTP web framework using Go | https://gin-gonic.com/ | +| Gin Swagger | Gin middleware for API documentation with Swagger 2.0 | https://github.com/swaggo/gin-swagger | +| Swaggo | Converts Go annotations to Swagger Documentation 2.0 | https://github.com/swaggo/swag | +| Air | Live reload and test for API service | https://github.com/cosmtrek/air | +| GORM | ORM library for Go | https://gorm.io/ | +| SQLite | GORM sqlite driver | https://github.com/go-gorm/sqlite | diff --git a/go.mod b/go.mod index 04efb37..e2e2aa8 100644 --- a/go.mod +++ b/go.mod @@ -35,7 +35,7 @@ require ( github.com/json-iterator/go v1.1.12 // indirect github.com/leodido/go-urn v1.2.1 // indirect github.com/mailru/easyjson v0.7.7 // indirect - github.com/mattn/go-sqlite3 v1.14.12 // indirect + github.com/mattn/go-sqlite3 v1.14.15 // indirect github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect github.com/modern-go/reflect2 v1.0.2 // indirect github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect diff --git a/go.sum b/go.sum index a7dae6c..7e79de6 100644 --- a/go.sum +++ b/go.sum @@ -134,8 +134,9 @@ github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovk github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94= github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ= github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM= -github.com/mattn/go-sqlite3 v1.14.12 h1:TJ1bhYJPV44phC+IMu1u2K/i5RriLTPe+yc68XDJ1Z0= github.com/mattn/go-sqlite3 v1.14.12/go.mod h1:NyWgC/yNuGj7Q9rpYnZvas74GogHl5/Z4A/KQRfk6bU= +github.com/mattn/go-sqlite3 v1.14.15 h1:vfoHhTN1af61xCRSWzFIWzx2YskyMTwHLrExkBOjvxI= +github.com/mattn/go-sqlite3 v1.14.15/go.mod h1:2eHXhiwb8IkHr+BDWZGa96P6+rkvnG63S2DGjv9HUNg= github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg= github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=