From 665eed84e147a668f27aee6e0009f9009442e260 Mon Sep 17 00:00:00 2001 From: Gregor Pogacnik <1640719+fiksn@users.noreply.github.com> Date: Tue, 29 Dec 2020 17:26:12 +0100 Subject: [PATCH] Kirin comments renamed to Aperture --- aperture.go | 2 +- config.go | 8 ++++---- proxy/service.go | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/aperture.go b/aperture.go index 0d1d494..6378e27 100644 --- a/aperture.go +++ b/aperture.go @@ -67,7 +67,7 @@ var ( } ) -// Main is the true entrypoint of Kirin. +// Main is the true entrypoint of Aperture. func Main() { // TODO: Prevent from running twice. err := run() diff --git a/config.go b/config.go index 155be8b..c5a5bec 100644 --- a/config.go +++ b/config.go @@ -42,7 +42,7 @@ type torConfig struct { } type config struct { - // ListenAddr is the listening address that we should use to allow Kirin + // ListenAddr is the listening address that we should use to allow Aperture // to listen for requests. ListenAddr string `long:"listenaddr" description:"The interface we should listen on for client requests."` @@ -72,10 +72,10 @@ type config struct { Tor *torConfig `long:"tor" description:"Configuration for the Tor instance backing the proxy."` // Services is a list of JSON objects in string format, which specify - // each backend service to Kirin. - Services []*proxy.Service `long:"service" description:"Configurations for each Kirin backend service."` + // each backend service to Aperture. + Services []*proxy.Service `long:"service" description:"Configurations for each Aperture backend service."` // DebugLevel is a string defining the log level for the service either // for all subsystems the same or individual level by subsystem. - DebugLevel string `long:"debuglevel" description:"Debug level for the Kirin application and its subsystems."` + DebugLevel string `long:"debuglevel" description:"Debug level for the Aperture application and its subsystems."` } diff --git a/proxy/service.go b/proxy/service.go index 6d084cf..4e15221 100644 --- a/proxy/service.go +++ b/proxy/service.go @@ -31,7 +31,7 @@ const ( ) // Service generically specifies configuration data for backend services to the -// Kirin proxy. +// Aperture proxy. type Service struct { // Name is the name of the LSAT-enabled service. Name string `long:"name" description:"Name of the LSAT-enabled service"`