SpoofDPI/hello/hello.go

10 lines
82 B
Go
Raw Normal View History

2021-12-28 03:15:54 +00:00
package hello
import (
"fmt"
)
2021-12-28 05:13:20 +00:00
func Hello() {
2021-12-28 05:32:40 +00:00
fmt.Print("Hello TEST")
2021-12-28 03:15:54 +00:00
}