diff options
| author | Shulhan <ms@kilabit.info> | 2025-07-17 02:22:30 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2025-07-17 02:30:40 +0700 |
| commit | 4d4b26dff03083955871439ee6e0ef9bd07c5a1c (patch) | |
| tree | ab239b115d9e39a2a7d8befd3ee37d101afb0c17 /go.mod | |
| download | lilin-4d4b26dff03083955871439ee6e0ef9bd07c5a1c.tar.xz | |
lilin: simple service monitoring
lilin is a program to help monitor other services through HTTP, TCP,
and UDP connection.
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 17 |
1 files changed, 17 insertions, 0 deletions
@@ -0,0 +1,17 @@ +// SPDX-FileCopyrightText: 2025 M. Shulhan <ms@kilabit.info> +// SPDX-License-Identifier: GPL-3.0-only + +module git.sr.ht/~shulhan/lilin + +go 1.25 + +require git.sr.ht/~shulhan/pakakeh.go v0.60.1 + +require ( + golang.org/x/exp v0.0.0-20250408133849-7e4ce0ab07d0 // indirect + golang.org/x/mod v0.24.0 // indirect + golang.org/x/net v0.39.0 // indirect + golang.org/x/sync v0.13.0 // indirect + golang.org/x/sys v0.32.0 // indirect + golang.org/x/tools v0.32.0 // indirect +) |
