Rename to godash

This commit is contained in:
Florian Hoss 2022-10-20 17:30:42 +02:00
parent 7b62c15f89
commit 55dce3186a
10 changed files with 15 additions and 16 deletions

View file

@ -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"
)

View file

@ -4,7 +4,7 @@ import (
"github.com/mitchellh/mapstructure"
"github.com/sirupsen/logrus"
"github.com/spf13/viper"
"launchpad/message"
"godash/message"
"strings"
)

View file

@ -1,5 +1,4 @@
{
"port": 4000,
"allowed_hosts": "http://localhost:4000",
"swagger": false
"allowed_hosts": "http://localhost:4000"
}

2
go.mod
View file

@ -1,4 +1,4 @@
module launchpad
module godash
go 1.19

View file

@ -2,7 +2,7 @@ package logging
import (
"github.com/sirupsen/logrus"
"launchpad/config"
"godash/config"
)
func NewGlobalLogger() {

View file

@ -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
View file

@ -1,5 +1,5 @@
{
"name": "launchpad",
"name": "godash",
"lockfileVersion": 2,
"requires": true,
"packages": {

View file

@ -1,9 +1,9 @@
package server
import (
"launchpad/bookmark"
"launchpad/files"
"launchpad/weather"
"godash/bookmark"
"godash/files"
"godash/weather"
"net/http"
)

View file

@ -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"
)

View file

@ -4,8 +4,8 @@ import (
"encoding/json"
"fmt"
"github.com/sirupsen/logrus"
"godash/config"
"io"
"launchpad/config"
"net/http"
"time"
)