地址 https://dataset.eu.org/ip
[ol]package main
import (
"net/http"
"os"
"time"
"github.com/gin-gonic/gin"
)
// function: get command line arguments
func GetCommandArguments() string {
// the example: program -f /goWeb/templates
arguments := os.Args
tmplPath := ""
for i := 0; i 复制代码