saw-go/service/loggerService.go

8 lines
152 B
Go

package service
import "StuAcaWorksAI/dao"
func insertLog(url, ip, method, params string) uint {
return dao.InsertLogToDB(url, ip, method, params)
}