diff --git a/internal/dis/distillery.go b/internal/dis/distillery.go index 2f9dcb9..9a55310 100644 --- a/internal/dis/distillery.go +++ b/internal/dis/distillery.go @@ -74,9 +74,6 @@ type Upstream struct { func (dis *Distillery) Control() *server.Server { return export[*server.Server](dis) } -func (dis *Distillery) Resolver() *resolver.Resolver { - return export[*resolver.Resolver](dis) -} func (dis *Distillery) SQL() *sql.SQL { return export[*sql.SQL](dis) } @@ -89,14 +86,9 @@ func (dis *Distillery) Auth() *auth.Auth { func (dis *Distillery) Keys() *sshkeys.SSHKeys { return export[*sshkeys.SSHKeys](dis) } - func (dis *Distillery) Cron() *cron.Cron { return export[*cron.Cron](dis) } - -func (dis *Distillery) Triplestore() *triplestore.Triplestore { - return export[*triplestore.Triplestore](dis) -} func (dis *Distillery) Instances() *instances.Instances { return export[*instances.Instances](dis) }