Add internal/api package to fetch server list from /api/servers.json endpoint Replace hardcoded server list with dynamic API call Implement loading states, error handling, and refresh capability
9 lines
235 B
Go
9 lines
235 B
Go
// package ui contains the Fyne GUI bootstrap and wiring.
|
|
package ui
|
|
|
|
import "testing"
|
|
|
|
// Dummy test to ensure package compiles
|
|
func TestUIPackage_Compiles(t *testing.T) {
|
|
// This test ensures the ui package compiles without errors
|
|
} |