yao/pipe/ui/web/web.go
2024-02-13 20:54:25 +08:00

12 lines
190 B
Go

package web
// Web the web UI
type Web struct{}
// Option the web option
type Option struct{}
// Render the Web UI
func (web *Web) Render(args []any, option Option) error {
return nil
}