From dc824ea96667b60ede3ac62b75f18e1faded977d Mon Sep 17 00:00:00 2001 From: terminaldweller Date: Mon, 24 Mar 2025 16:59:26 -0400 Subject: initial support for triggered lua functions --- types.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'types.go') diff --git a/types.go b/types.go index be8b064..fd37291 100644 --- a/types.go +++ b/types.go @@ -54,10 +54,10 @@ type LuaCommand struct { } type TriggeredScripts struct { - Path string - FuncName string - Channels [][]string - TriggerType []string + Path string + FuncName string + Channels [][]string + TriggerTypes []string } type RssFile struct { @@ -190,9 +190,9 @@ func (config *TomlConfig) insertTriggeredScript(path, cmd string, triggerType [] config.TriggeredScripts = make(map[string]TriggeredScripts) } config.TriggeredScripts[path] = TriggeredScripts{ - Path: path, - FuncName: cmd, - TriggerType: triggerType, + Path: path, + FuncName: cmd, + TriggerTypes: triggerType, } } -- cgit v1.2.3