-
- Downloads
Implement quit and exit
Showing
- NOTES.md 11 additions, 0 deletionsNOTES.md
- accounts/accounts.go 72 additions, 4 deletionsaccounts/accounts.go
- dclish/dclish.go 8 additions, 4 deletionsdclish/dclish.go
- go.mod 17 additions, 3 deletionsgo.mod
- go.sum 25 additions, 0 deletionsgo.sum
- main.go 1 addition, 1 deletionmain.go
- repl/command.go 2 additions, 0 deletionsrepl/command.go
- repl/misc.go 28 additions, 0 deletionsrepl/misc.go
... | ... | @@ -3,7 +3,21 @@ module git.lyda.ie/kevin/bulletin |
go 1.24.2 | ||
require ( | ||
github.com/chzyer/readline v1.5.1 // indirect | ||
github.com/urfave/cli/v3 v3.3.2 // indirect | ||
golang.org/x/sys v0.0.0-20220310020820-b874c991c1a5 // indirect | ||
github.com/adrg/xdg v0.5.3 | ||
github.com/chzyer/readline v1.5.1 | ||
github.com/urfave/cli/v3 v3.3.2 | ||
modernc.org/sqlite v1.37.0 | ||
) | ||
require ( | ||
github.com/dustin/go-humanize v1.0.1 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/ncruces/go-strftime v0.1.9 // indirect | ||
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect | ||
golang.org/x/exp v0.0.0-20250506013437-ce4c2cf36ca6 // indirect | ||
golang.org/x/sys v0.33.0 // indirect | ||
modernc.org/libc v1.65.0 // indirect | ||
modernc.org/mathutil v1.7.1 // indirect | ||
modernc.org/memory v1.10.0 // indirect | ||
) |
repl/misc.go
0 → 100644
Please register or sign in to comment