Skip to content

Instantly share code, notes, and snippets.

View silviucm's full-sized avatar

Silviu Capota-Mera silviucm

View GitHub Profile
package servio
import (
"fmt"
)
func ServerFunc() {
fmt.Println("Hello from server")
}
package main
import (
"modtest/servio"
)
func main() {
servio.ServerFunc()
}
module modtest