main.go 291 B

123456789101112131415161718
  1. package main
  2. import (
  3. "github.com/tobychui/naffg"
  4. )
  5. func main() {
  6. app := naffg.NewApplication(&naffg.Options{
  7. Title: "My WebApp",
  8. Width: 400,
  9. Height: 600,
  10. Resizable: false,
  11. StartURI: "http://imuslab.com",
  12. })
  13. // Run the application
  14. app.Run()
  15. }