createlist
This commit is contained in:
snoop 2017-06-07 18:56:58 +09:00
parent 7806a1eb96
commit 88b0b0090d

View File

@ -5,6 +5,7 @@ import (
"git.loafle.net/overflow/commons_go/model/timestamp"
"git.loafle.net/overflow/overflow_proxy_service/proxy/member"
"git.loafle.net/overflow/overflow_proxy_service/proxy"
"fmt"
)
type Target struct {
@ -67,3 +68,13 @@ func (t *TargetService)Create(tm *Target) string {
return out;
}
func (t *TargetService)CreateList(tmlist []*Target) string {
fmt.Println(len(tmlist))
return ""
}