mirror of
https://github.com/mjl-/mox.git
synced 2024-12-26 16:33:47 +03:00
d1b87cdb0d
since we are now at go1.21 as minimum.
17 lines
368 B
Go
17 lines
368 B
Go
package publicsuffix_test
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"log/slog"
|
|
|
|
"github.com/mjl-/mox/dns"
|
|
"github.com/mjl-/mox/publicsuffix"
|
|
)
|
|
|
|
func ExampleLookup() {
|
|
// Lookup the organizational domain for sub.example.org.
|
|
orgDom := publicsuffix.Lookup(context.Background(), slog.Default(), dns.Domain{ASCII: "sub.example.org"})
|
|
fmt.Println(orgDom)
|
|
// Output: example.org
|
|
}
|