manually verified all paths
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
3387c71b19
commit
8040dfad10
|
@ -7,7 +7,7 @@ go.wit.com/log git.wit.org/wit/log
|
|||
go.wit.com/widget git.wit.org/gui/widget
|
||||
go.wit.com/gui git.wit.org/gui/gui
|
||||
|
||||
# gui toolkits
|
||||
# gui toolkit packages
|
||||
go.wit.com/toolkits/tree git.wit.org/toolkits/tree
|
||||
go.wit.com/toolkits/nocui git.wit.org/toolkits/nocui
|
||||
go.wit.com/toolkits/gocui git.wit.org/toolkits/gocui
|
||||
|
@ -23,6 +23,7 @@ go.wit.com/lib/gui/linuxstatus git.wit.org/jcarr/hostname
|
|||
go.wit.com/lib/gui/logsettings git.wit.org/jcarr/logsettings
|
||||
go.wit.com/lib/gui/digitalocean git.wit.org/gui/digitalocean
|
||||
go.wit.com/lib/gui/cloudflare git.wit.org/gui/cloudflare
|
||||
go.wit.com/lib/gui/shell git.wit.org/wit/shell
|
||||
go.wit.com/lib/protobuf/wit git.wit.org/wit/witProtobuf
|
||||
|
||||
# Applications
|
||||
|
@ -44,4 +45,3 @@ go.wit.com/dev/alexflint/scalar git.wit.org/jcarr/go-scalar
|
|||
go.wit.com/dev/andlabs/ui git.wit.org/interesting/andlabs-ui
|
||||
go.wit.com/dev/andlabs/libui git.wit.org/interesting/libui
|
||||
go.wit.com/dev/davecgh/spew git.wit.org/jcarr/go-spew
|
||||
go.wit.com/shell git.wit.org/wit/shell
|
||||
|
|
|
@ -0,0 +1,10 @@
|
|||
module go.wit.com/apps/go.wit.com
|
||||
|
||||
go 1.21.4
|
||||
|
||||
require go.wit.com/log v0.5.5
|
||||
|
||||
require (
|
||||
go.wit.com/dev/davecgh/spew v1.1.4 // indirect
|
||||
go.wit.com/gui v0.9.24 // indirect
|
||||
)
|
|
@ -0,0 +1,6 @@
|
|||
go.wit.com/dev/davecgh/spew v1.1.4 h1:C9hj/rjlUpdK+E6aroyLjCbS5MFcyNUOuP1ICLWdNek=
|
||||
go.wit.com/dev/davecgh/spew v1.1.4/go.mod h1:sihvWmnQ/09FWplnEmozt90CCVqBtGuPXM811tgfhFA=
|
||||
go.wit.com/gui v0.9.24 h1:NYcNrEIkcnDqOJ1rKQCvXOo3Jp2XUBgR2fTfO4x3WMM=
|
||||
go.wit.com/gui v0.9.24/go.mod h1:fBjVvDK/rYjbDz6xbLYXtdDLyfe5X/J4NEdfZRvVuXc=
|
||||
go.wit.com/log v0.5.5 h1:bK3b94uVKgev4jB5wg06FnvCFBEapQICTSH2YW+CWr4=
|
||||
go.wit.com/log v0.5.5/go.mod h1:BaJBfHFqcJSJLXGQ9RHi3XVhPgsStxSMZRlaRxW4kAo=
|
|
@ -39,7 +39,7 @@ func indexBodyStart(w http.ResponseWriter) {
|
|||
fmt.Fprintln(w, " <th>Package</th>")
|
||||
fmt.Fprintln(w, " <th>go get</th>")
|
||||
fmt.Fprintln(w, " <th>Authoritative sources (IPv6 only)</th>")
|
||||
fmt.Fprintln(w, " <th>github mirror</th>")
|
||||
fmt.Fprintln(w, " <th></th>")
|
||||
fmt.Fprintln(w, " <th>Documentation</th>")
|
||||
fmt.Fprintln(w, " </tr>")
|
||||
// fmt.Fprintln(w, " </thead>")
|
||||
|
|
Loading…
Reference in New Issue