Other(refactor): Remove unused frontend args

This commit is contained in:
James Houlahan
2022-08-18 15:03:04 +02:00
committed by Jakub
parent aa5c3042da
commit 743a2f8dac
4 changed files with 8 additions and 21 deletions

View File

@ -42,9 +42,6 @@ type Frontend interface {
// New returns initialized frontend based on `frontendType`, which can be `cli` or `grpc`.
func New(
version,
buildVersion,
programName,
frontendType string,
showWindowOnStart bool,
panicHandler types.PanicHandler,
@ -62,8 +59,6 @@ func New(
switch frontendType {
case "grpc":
return grpc.NewService(
version,
programName,
showWindowOnStart,
panicHandler,
tls,