chore: initial project structure
This commit is contained in:
2
internal/auth/auth.go
Normal file
2
internal/auth/auth.go
Normal file
@@ -0,0 +1,2 @@
|
||||
// package auth handles Yggdrasil authentication (login, refresh, validate).
|
||||
package auth
|
||||
2
internal/config/config.go
Normal file
2
internal/config/config.go
Normal file
@@ -0,0 +1,2 @@
|
||||
// package config manages launcher configuration (launcher.json, system paths).
|
||||
package config
|
||||
2
internal/fetcher/fetcher.go
Normal file
2
internal/fetcher/fetcher.go
Normal file
@@ -0,0 +1,2 @@
|
||||
// package fetcher handles HTTP downloads and SHA-1 verification.
|
||||
package fetcher
|
||||
2
internal/java/java.go
Normal file
2
internal/java/java.go
Normal file
@@ -0,0 +1,2 @@
|
||||
// package java manages portable JRE downloads and detection.
|
||||
package java
|
||||
2
internal/launch/launch.go
Normal file
2
internal/launch/launch.go
Normal file
@@ -0,0 +1,2 @@
|
||||
// package launch handles Minecraft process launching (argument interpolation, classpath).
|
||||
package launch
|
||||
2
internal/selfupdate/selfupdate.go
Normal file
2
internal/selfupdate/selfupdate.go
Normal file
@@ -0,0 +1,2 @@
|
||||
// package selfupdate handles launcher auto-updates via go-selfupdate.
|
||||
package selfupdate
|
||||
2
internal/ui/components/components.go
Normal file
2
internal/ui/components/components.go
Normal file
@@ -0,0 +1,2 @@
|
||||
// package components provides reusable Fyne widgets (avatar, progress bar).
|
||||
package components
|
||||
2
internal/ui/screens/screens.go
Normal file
2
internal/ui/screens/screens.go
Normal file
@@ -0,0 +1,2 @@
|
||||
// package screens implements application screens (login, main menu, settings).
|
||||
package screens
|
||||
2
internal/ui/theme/theme.go
Normal file
2
internal/ui/theme/theme.go
Normal file
@@ -0,0 +1,2 @@
|
||||
// package theme defines the custom Fyne theme (Minecraft-style colors, fonts).
|
||||
package theme
|
||||
2
internal/ui/ui.go
Normal file
2
internal/ui/ui.go
Normal file
@@ -0,0 +1,2 @@
|
||||
// package ui contains Fyne GUI code (main window, theme, navigation).
|
||||
package ui
|
||||
Reference in New Issue
Block a user