package database import ( "path/filepath" ) func (d *database) configureDBPath() { d.dbPath = filepath.Join(d.app.Fyne().Storage().RootURI().Path(), "database.sqlite3") d.logger.Info("Database path configured.", "path", d.dbPath) }