Files
trok/internal/server/init.go
2024-10-22 16:03:20 +05:30

14 lines
176 B
Go

/*
Copyright © 2024 tux <0xtux@pm.me>
*/
package server
import (
"github.com/rs/zerolog/log"
)
func Start(port uint16) {
log.Info().Msgf("Hello from server: %d", port)
}