You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lntop/ui/models/models.go

12 lines
159 B
Go

package models
import "github.com/edouardparis/lntop/app"
type Models struct {
App *app.App
}
func New(app *app.App) *Models {
return &Models{App: app}
}