Updated module name
This commit is contained in:
parent
7883b71c76
commit
f23c43033d
2
go.mod
2
go.mod
|
@ -1,4 +1,4 @@
|
|||
module resource_manager
|
||||
module git.bbr-dev.info/brajkovic/resource_manager
|
||||
|
||||
go 1.17
|
||||
|
||||
|
|
|
@ -3,10 +3,10 @@ package main
|
|||
import (
|
||||
"bytes"
|
||||
"encoding/base64"
|
||||
"git.bbr-dev.info/brajkovic/resource_manager/resource"
|
||||
"github.com/gin-gonic/gin"
|
||||
"log"
|
||||
"net/http"
|
||||
"resource_manager/resource"
|
||||
"strings"
|
||||
)
|
||||
|
||||
|
@ -14,9 +14,9 @@ type LegacySave struct {
|
|||
Content string `json:"content"`
|
||||
Path string `json:"path"`
|
||||
Properties struct {
|
||||
Height int `json:"height"`
|
||||
Overwrite bool `json:"overwrite"`
|
||||
MimeType string `json:"mimeType"`
|
||||
Height int `json:"height"`
|
||||
Overwrite bool `json:"overwrite"`
|
||||
MimeType string `json:"mimeType"`
|
||||
} `json:"properties"`
|
||||
}
|
||||
|
||||
|
|
4
main.go
4
main.go
|
@ -1,13 +1,13 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"git.bbr-dev.info/brajkovic/resource_manager/cache"
|
||||
"git.bbr-dev.info/brajkovic/resource_manager/resource"
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/joho/godotenv"
|
||||
"log"
|
||||
"net/http"
|
||||
"os"
|
||||
"resource_manager/cache"
|
||||
"resource_manager/resource"
|
||||
"strings"
|
||||
"time"
|
||||
)
|
||||
|
|
|
@ -4,6 +4,7 @@ import (
|
|||
"bytes"
|
||||
"context"
|
||||
"errors"
|
||||
"git.bbr-dev.info/brajkovic/resource_manager/cache"
|
||||
"github.com/aws/aws-sdk-go/aws"
|
||||
"github.com/aws/aws-sdk-go/aws/session"
|
||||
"github.com/aws/aws-sdk-go/service/s3"
|
||||
|
@ -13,7 +14,6 @@ import (
|
|||
"net/url"
|
||||
"os"
|
||||
"path/filepath"
|
||||
"resource_manager/cache"
|
||||
"strconv"
|
||||
"strings"
|
||||
"sync"
|
||||
|
|
|
@ -3,9 +3,9 @@ package resource
|
|||
import (
|
||||
"bytes"
|
||||
"context"
|
||||
"git.bbr-dev.info/brajkovic/resource_manager/cache"
|
||||
"log"
|
||||
"os"
|
||||
"resource_manager/cache"
|
||||
"strings"
|
||||
"time"
|
||||
)
|
||||
|
|
Loading…
Reference in New Issue