1 package server 2 3 import ( 4 "context" 5 "fmt" 6 ) 7 8 func get_service_id(ctx context.Context, uid string) error { 9 fmt.Printf("[go-easyops] getting service by userid \"%s\"\n", uid) 10 panic("obsolete codepath") 11 } 12
View as plain text