Skip to content

Commit

Permalink
Organize main helper functions and split off into files
Browse files Browse the repository at this point in the history
  • Loading branch information
electrikmilk committed Apr 30, 2024
1 parent 6e21c49 commit 509a0a9
Show file tree
Hide file tree
Showing 6 changed files with 302 additions and 281 deletions.
7 changes: 4 additions & 3 deletions actions_std.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ package main
import (
"encoding/base64"
"fmt"
"github.com/google/uuid"
"os"
"reflect"
"regexp"
Expand Down Expand Up @@ -3654,7 +3655,7 @@ var actions = map[string]*actionDefinition{
{
key: "workflowIdentifier",
dataType: Text,
value: shortcutsUUID(),
value: uuid.New().String(),
},
{
key: "isSelf",
Expand Down Expand Up @@ -3684,7 +3685,7 @@ var actions = map[string]*actionDefinition{
{
key: "workflowIdentifier",
dataType: Text,
value: shortcutsUUID(),
value: uuid.New().String(),
},
{
key: "isSelf",
Expand Down Expand Up @@ -3724,7 +3725,7 @@ var actions = map[string]*actionDefinition{
{
key: "workflowIdentifier",
dataType: Text,
value: shortcutsUUID(),
value: uuid.New().String(),
},
{
key: "isSelf",
Expand Down
Loading

0 comments on commit 509a0a9

Please sign in to comment.