123456789101112131415161718 |
- package main
- import (
- "github.com/tobychui/naffg"
- )
- func main() {
- app := naffg.NewApplication(&naffg.Options{
- Title: "My WebApp",
- Width: 400,
- Height: 600,
- Resizable: false,
- StartURI: "http://imuslab.com",
- })
- // Run the application
- app.Run()
- }
|