Rename to godash
This commit is contained in:
parent
7b62c15f89
commit
55dce3186a
10 changed files with 15 additions and 16 deletions
|
@ -5,8 +5,8 @@ import (
|
|||
"github.com/fsnotify/fsnotify"
|
||||
"github.com/sirupsen/logrus"
|
||||
folderCreate "github.com/unjx-de/go-folder"
|
||||
"godash/message"
|
||||
"io"
|
||||
"launchpad/message"
|
||||
"os"
|
||||
"strings"
|
||||
)
|
||||
|
|
|
@ -4,7 +4,7 @@ import (
|
|||
"github.com/mitchellh/mapstructure"
|
||||
"github.com/sirupsen/logrus"
|
||||
"github.com/spf13/viper"
|
||||
"launchpad/message"
|
||||
"godash/message"
|
||||
"strings"
|
||||
)
|
||||
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
{
|
||||
"port": 4000,
|
||||
"allowed_hosts": "http://localhost:4000",
|
||||
"swagger": false
|
||||
"allowed_hosts": "http://localhost:4000"
|
||||
}
|
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module launchpad
|
||||
module godash
|
||||
|
||||
go 1.19
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@ package logging
|
|||
|
||||
import (
|
||||
"github.com/sirupsen/logrus"
|
||||
"launchpad/config"
|
||||
"godash/config"
|
||||
)
|
||||
|
||||
func NewGlobalLogger() {
|
||||
|
|
6
main.go
6
main.go
|
@ -1,9 +1,9 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"launchpad/logging"
|
||||
"launchpad/server"
|
||||
"launchpad/weather"
|
||||
"godash/logging"
|
||||
"godash/server"
|
||||
"godash/weather"
|
||||
)
|
||||
|
||||
func main() {
|
||||
|
|
2
package-lock.json
generated
2
package-lock.json
generated
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"name": "launchpad",
|
||||
"name": "godash",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
package server
|
||||
|
||||
import (
|
||||
"launchpad/bookmark"
|
||||
"launchpad/files"
|
||||
"launchpad/weather"
|
||||
"godash/bookmark"
|
||||
"godash/files"
|
||||
"godash/weather"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@ import (
|
|||
"fmt"
|
||||
"github.com/go-chi/chi/v5"
|
||||
"github.com/sirupsen/logrus"
|
||||
"launchpad/config"
|
||||
"launchpad/message"
|
||||
"godash/config"
|
||||
"godash/message"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
|
|
|
@ -4,8 +4,8 @@ import (
|
|||
"encoding/json"
|
||||
"fmt"
|
||||
"github.com/sirupsen/logrus"
|
||||
"godash/config"
|
||||
"io"
|
||||
"launchpad/config"
|
||||
"net/http"
|
||||
"time"
|
||||
)
|
||||
|
|
Loading…
Add table
Reference in a new issue