[server][core] move db and storage into core

This commit is contained in:
Abhishek Shroff
2024-10-19 18:33:55 +05:30
parent 2c1b907966
commit 4a40fffc20
32 changed files with 18 additions and 18 deletions
+2 -2
View File
@@ -6,8 +6,8 @@ import (
"os"
"github.com/shroff/phylum/server/internal/core/app"
"github.com/shroff/phylum/server/internal/db"
"github.com/shroff/phylum/server/internal/storage"
"github.com/shroff/phylum/server/internal/core/db"
"github.com/shroff/phylum/server/internal/core/storage"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"os"
"strings"
"github.com/shroff/phylum/server/internal/storage"
"github.com/shroff/phylum/server/internal/core/storage"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
)
+1 -1
View File
@@ -7,7 +7,7 @@ import (
"github.com/shroff/phylum/server/internal/command/appcmd"
"github.com/shroff/phylum/server/internal/command/fs"
"github.com/shroff/phylum/server/internal/db"
"github.com/shroff/phylum/server/internal/core/db"
"github.com/sirupsen/logrus"
"github.com/spf13/cobra"
"github.com/spf13/viper"
+2 -2
View File
@@ -6,9 +6,9 @@ import (
"os"
"github.com/shroff/phylum/server/internal/core/app"
"github.com/shroff/phylum/server/internal/core/db"
"github.com/shroff/phylum/server/internal/core/fs"
"github.com/shroff/phylum/server/internal/db"
"github.com/shroff/phylum/server/internal/storage"
"github.com/shroff/phylum/server/internal/core/storage"
"github.com/spf13/cobra"
"github.com/spf13/viper"
)
+1 -1
View File
@@ -6,7 +6,7 @@ import (
"os"
"strconv"
"github.com/shroff/phylum/server/internal/db"
"github.com/shroff/phylum/server/internal/core/db"
"github.com/spf13/cobra"
)