Imported the existing codebase and refactored it to work with the new build system.

Adjusted dependencies to use our own repository mirrors.
Modified the Makefile for proper build output and target directory.
This commit is contained in:
kernel 2025-07-31 19:44:16 +03:00
parent a080c85cbc
commit 2424e48e17
118 changed files with 93 additions and 14369 deletions

23
go.mod Normal file
View file

@ -0,0 +1,23 @@
module github.com/kernel-punk/gotty
go 1.23.4
require (
github.com/NYTimes/gziphandler v1.1.1
github.com/elazarl/go-bindata-assetfs v1.0.1
github.com/fatih/structs v1.1.0
github.com/gorilla/websocket v1.5.3
github.com/kr/pty v1.1.8
github.com/pkg/errors v0.9.1
github.com/urfave/cli v1.22.17
github.com/yudai/hcl v0.0.0-20151013225006-5fa2393b3552
)
require (
github.com/cpuguy83/go-md2man/v2 v2.0.7 // indirect
github.com/creack/pty v1.1.7 // indirect
github.com/hashicorp/errwrap v1.0.0 // indirect
github.com/hashicorp/go-multierror v1.1.1 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
golang.org/x/sys v0.34.0 // indirect
)