Move all code into musicplayer module

This commit is contained in:
Alexander Heldt
2025-11-22 18:57:17 +01:00
parent 249b0671e4
commit d01b6d3f18
14 changed files with 22 additions and 22 deletions

View File

@@ -4,8 +4,8 @@ import gleam/otp/actor
import gleam/result
import gleam/string
import tcp/reason.{type Reason}
import tcp/tcp
import musicplayer/tcp/reason.{type Reason}
import musicplayer/tcp/tcp
pub type Message {
Shutdown

View File

@@ -1,7 +1,7 @@
import gleam/list
import gleeunit
import input/key.{type Key, Char, csi, esc, input_introducer as ii}
import musicplayer/input/key.{type Key, Char, csi, esc, input_introducer as ii}
pub fn main() -> Nil {
gleeunit.main()

View File

@@ -1,9 +1,9 @@
import gleam/list
import gleeunit
import input/key.{type Key, Char}
import mpv/control.{type Control}
import mpv/internal as control_internal
import musicplayer/input/key.{type Key, Char}
import musicplayer/mpv/control.{type Control}
import musicplayer/mpv/internal as control_internal
pub fn main() -> Nil {
gleeunit.main()

View File

@@ -3,7 +3,7 @@ import gleeunit
import simplifile
import echo_server
import tcp/tcp
import musicplayer/tcp/tcp
pub fn main() -> Nil {
gleeunit.main()