mirror of
https://github.com/micromdm/micromdm/
synced 2026-08-12 04:55:39 +08:00
8 lines
132 B
Go
8 lines
132 B
Go
package push
|
|
|
|
import "golang.org/x/net/context"
|
|
|
|
type Service interface {
|
|
Push(ctx context.Context, udid string) (string, error)
|
|
}
|