1 package server 2 3 import ( 4 "fmt" 5 "time" 6 ) 7 8 type rpccall struct { 9 ServiceName string 10 MethodName string 11 Started time.Time 12 } 13 14 func (r *rpccall) FullMethod() string { 15 return fmt.Sprintf("%s/%s", r.ServiceName, r.MethodName) 16 } 17