schreifuchs b3bc1c4965
All checks were successful
build / windows (push) Successful in 2m22s
build / linux (push) Successful in 1m54s
add db to struct
2025-03-11 09:49:13 +01:00

38 lines
656 B
Go

package main
import (
"context"
"fmt"
"github.com/gen2brain/beeep"
"gorm.io/gorm"
)
// App struct
type App struct {
ctx context.Context
db *gorm.DB
}
// NewApp creates a new App application struct
func NewApp(db *gorm.DB) *App {
return &App{db: db}
}
// startup is called when the app starts. The context is saved
// so we can call the runtime methods
func (a *App) startup(ctx context.Context) {
a.ctx = ctx
err := beeep.Notify("Hello", "World", "")
if err != nil {
fmt.Println(err)
}
}
// Greet returns a greeting for the given name
func (a *App) Greet(name string) string {
return fmt.Sprintf("Hello %s, It's show time!", name)
}