https://github.com/livexy/plugins
https://github.com/livexy/plugins
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/livexy/plugins
- Owner: LiveXY
- Created: 2022-11-14T13:24:20.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-02-19T03:57:36.000Z (over 1 year ago)
- Last Synced: 2025-02-19T04:22:21.368Z (over 1 year ago)
- Language: Go
- Size: 150 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Plugins
本项目收集了作为插件使用的多个通用组件,用于增强应用程序的功能。
## 目录结构
- `dameng`: 达梦数据库适配
- `excel`: Excel 文件处理
- `mysql`: MySQL 数据库适配
- `redis`: Redis 缓存适配(支持单机与集群)
- `local-fs`: 本地文件系统操作
- `pgsql`: PostgreSQL 数据库适配
- ... 其他组件
## 开发环境
- **Go版本**: >= 1.25
- **依赖管理**: Go Modules
## 编译与测试
本项目使用 `Makefile` 进行管理。
```bash
# 更新所有依赖
make update-depend
# 编译所有插件 (.so 文件)
make build-plugins
# 安全检查
make govulncheck
make gosec
```