removed app, reorganized logic into modules

This commit is contained in:
2025-03-24 15:09:27 -05:00
parent 44480bd30a
commit 1458f99c3d
11 changed files with 116 additions and 109 deletions
+2 -2
View File
@@ -23,8 +23,8 @@ const (
Stopped
)
func NewPlayer() *Player {
return &Player{}
func NewPlayer() (*Player, error) {
return &Player{}, nil
}
func (p *Player) Init(ctx context.Context) {