From 7cbb8d59f5b871c7a058307b47c2f4a4e8bfabf8 Mon Sep 17 00:00:00 2001 From: Chris Gianelloni Date: Tue, 5 Sep 2023 12:54:49 -0400 Subject: [PATCH] chore: go fmt ./... Signed-off-by: Chris Gianelloni --- output/notify/plugin.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/output/notify/plugin.go b/output/notify/plugin.go index 2d289c0..4c83aeb 100644 --- a/output/notify/plugin.go +++ b/output/notify/plugin.go @@ -29,13 +29,13 @@ func init() { Name: "notify", Description: "display events using operating system notifications", NewFromOptionsFunc: NewFromCmdlineOptions, - Options: []plugin.PluginOption{ + Options: []plugin.PluginOption{ { - Name: "title", - Type: plugin.PluginOptionTypeString, - Description: "specifies the title to use", + Name: "title", + Type: plugin.PluginOptionTypeString, + Description: "specifies the title to use", DefaultValue: "Snek", - Dest: &(cmdlineOptions.title), + Dest: &(cmdlineOptions.title), }, }, },