This adds a plugin host that seperates plugins from the gloomi process, allowing for plugins to be unloaded and loaded. This commit also has a fair amount of other changes, nice to haves and bug fixes, some notable changes are: - Highly available reverse proxy from my Flux project - Improved gloomi functionality
16 lines
348 B
Modula-2
16 lines
348 B
Modula-2
module github.com/juls0730/gloom
|
|
|
|
go 1.23.4
|
|
|
|
require (
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/mattn/go-sqlite3 v1.14.24
|
|
)
|
|
|
|
require (
|
|
github.com/mattn/go-colorable v0.1.14 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
|
|
golang.org/x/sys v0.29.0 // indirect
|
|
)
|