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 (
"strings"
"wazuh-notify/discord"
"wazuh-notify/log"
"wazuh-notify/ntfy"
"wazuh-notify/services"
"wazuh-notify/slack"
"wazuh-notify/services/log"
"wazuh-notify/targets/discord"
"wazuh-notify/targets/ntfy"
"wazuh-notify/targets/slack"
)
func main() {

View File

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

View File

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

View File

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

View File

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