This commit is contained in:
itworksnow 2021-12-28 14:13:20 +09:00
parent 2664dcf0d1
commit 512b04f3dd
2 changed files with 3 additions and 6 deletions

View File

@ -1,11 +1,9 @@
package main
import (
"fmt"
"github.com/itworksnow/SpoofDPI/hello"
)
func main() {
fmt.Println("Hello, world!")
hello.hello()
hello.Hello()
}

View File

@ -4,7 +4,6 @@ import (
"fmt"
)
func hello() {
fmt.Print("hello")
func Hello() {
fmt.Print("Hello, world!")
}