[PD1] restructure

This commit is contained in:
Afonso Franco 2024-04-16 12:23:00 +01:00
parent c0e19b5774
commit 8553e1674e
Signed by: afonso
SSH key fingerprint: SHA256:aiLbdlPwXKJS5wMnghdtod0SPy8imZjlVvCyUX9DJNk
17 changed files with 141 additions and 33 deletions

View file

@ -0,0 +1,9 @@
package main
import (
"PD1/internal/client"
)
func main(){
client.Run()
}

View file

@ -0,0 +1,9 @@
package main
import (
"PD1/internal/server"
)
func main(){
server.Run()
}