github.com/alloyzeus/go-azfl@v0.0.0-20231220071816-9740126a2d07/azcore/realm.go (about) 1 package azcore 2 3 import "net/url" 4 5 // RealmService provides information about the realm. 6 // 7 // A realm is a site or the whole service. 8 type RealmService interface { 9 AZRealmService() 10 } 11 12 // RealmServiceServer provides contracts for a realm service. 13 type RealmServiceServer interface { 14 RealmService 15 16 RealmName() string 17 18 WebsiteURL() url.URL 19 }