fix imports

This commit is contained in:
maddalax 2024-09-13 12:28:32 -05:00
parent 23dd1db778
commit ad33524742
4 changed files with 21 additions and 5 deletions

View file

@ -1,3 +1,20 @@
module github.com/maddalax/mhtml/framework-ui module github.com/maddalax/mhtml/framework-ui
go 1.23.0 go 1.23.0
require github.com/maddalax/mhtml/framework v0.0.0-20240913172653-23dd1db77843
require (
github.com/andybalholm/brotli v1.0.5 // indirect
github.com/gofiber/fiber/v2 v2.52.5 // indirect
github.com/google/uuid v1.5.0 // indirect
github.com/klauspost/compress v1.17.0 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.51.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
golang.org/x/sys v0.25.0 // indirect
)

View file

@ -1,8 +1,6 @@
package ui package ui
import ( import "github.com/maddalax/mhtml/framework/h"
"mhtml/h"
)
type ButtonProps struct { type ButtonProps struct {
Id string Id string

View file

@ -1,6 +1,6 @@
package ui package ui
import "mhtml/h" import "github.com/maddalax/mhtml/framework/h"
type InputProps struct { type InputProps struct {
Id string Id string

View file

@ -5,6 +5,8 @@ go 1.23.0
require ( require (
github.com/gofiber/fiber/v2 v2.52.5 github.com/gofiber/fiber/v2 v2.52.5
github.com/google/uuid v1.6.0 github.com/google/uuid v1.6.0
github.com/maddalax/mhtml/framework v0.0.0-20240913172412-f46749837a6f
github.com/maddalax/mhtml/framework-ui v0.0.0-20240913172653-23dd1db77843
github.com/redis/go-redis/v9 v9.6.1 github.com/redis/go-redis/v9 v9.6.1
) )
@ -13,7 +15,6 @@ require (
github.com/cespare/xxhash/v2 v2.2.0 // indirect github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect
github.com/klauspost/compress v1.17.0 // indirect github.com/klauspost/compress v1.17.0 // indirect
github.com/maddalax/mhtml/framework v0.0.0-20240913172412-f46749837a6f // indirect
github.com/mattn/go-colorable v0.1.13 // indirect github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect github.com/mattn/go-runewidth v0.0.15 // indirect