client.go 89 B

123456789
  1. package client
  2. import (
  3. "fmt"
  4. )
  5. func Hello() {
  6. fmt.Println("Hello from glient.go")
  7. }