1 2 3 4 5 6 7 8 9
package ipc import "net/url" type Handler interface { Mailto(addr *url.URL) error Mbox(source string) error Command(args []string) error }