refactor folders

This commit is contained in:
darius 2024-05-27 15:13:11 +02:00
parent 5675e75f45
commit 4e560878d4
13 changed files with 8 additions and 8 deletions

View File

@ -2,11 +2,11 @@ package main
import ( import (
"strings" "strings"
"wazuh-notify/discord"
"wazuh-notify/log"
"wazuh-notify/ntfy"
"wazuh-notify/services" "wazuh-notify/services"
"wazuh-notify/slack" "wazuh-notify/services/log"
"wazuh-notify/targets/discord"
"wazuh-notify/targets/ntfy"
"wazuh-notify/targets/slack"
) )
func main() { func main() {

View File

@ -5,7 +5,7 @@ import (
"github.com/joho/godotenv" "github.com/joho/godotenv"
"os" "os"
"path" "path"
"wazuh-notify/log" "wazuh-notify/services/log"
"wazuh-notify/types" "wazuh-notify/types"
) )

View File

@ -3,7 +3,7 @@ package services
import ( import (
"os" "os"
"strings" "strings"
"wazuh-notify/log" "wazuh-notify/services/log"
"wazuh-notify/types" "wazuh-notify/types"
) )

View File

@ -2,7 +2,7 @@ package services
import ( import (
"flag" "flag"
"wazuh-notify/log" "wazuh-notify/services/log"
"wazuh-notify/types" "wazuh-notify/types"
) )

View File

@ -6,7 +6,7 @@ import (
"os" "os"
"slices" "slices"
"strings" "strings"
"wazuh-notify/log" "wazuh-notify/services/log"
"wazuh-notify/types" "wazuh-notify/types"
) )