diff --git a/Sources/BasedClient/Based+Service.swift b/Sources/BasedClient/Based+Service.swift new file mode 100644 index 0000000..1cf3c34 --- /dev/null +++ b/Sources/BasedClient/Based+Service.swift @@ -0,0 +1,27 @@ +// +// Based+Service.swift +// +// +// Created by Alexander van der Werff on 18/01/2022. +// + +import Foundation + +extension Based { + + public func service( + html: Bool + ) -> String { + return Current.basedClient.service( + cluster: configuration.cluster, + org: configuration.org, + project: configuration.project, + env: configuration.env, + name: configuration.name, + key: configuration.key, + optionalKey: configuration.optionalKey, + html: html + ) + } + +}