Files
micromdm/push/push.go
2017-02-07 09:08:28 -05:00

8 lines
132 B
Go

package push
import "golang.org/x/net/context"
type Service interface {
Push(ctx context.Context, udid string) (string, error)
}