Updated module name

This commit is contained in:
Borna Rajkovic 2021-11-19 17:32:44 +01:00
parent 7883b71c76
commit f23c43033d
5 changed files with 9 additions and 9 deletions

2
go.mod
View File

@ -1,4 +1,4 @@
module resource_manager module git.bbr-dev.info/brajkovic/resource_manager
go 1.17 go 1.17

View File

@ -3,10 +3,10 @@ package main
import ( import (
"bytes" "bytes"
"encoding/base64" "encoding/base64"
"git.bbr-dev.info/brajkovic/resource_manager/resource"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"log" "log"
"net/http" "net/http"
"resource_manager/resource"
"strings" "strings"
) )
@ -14,9 +14,9 @@ type LegacySave struct {
Content string `json:"content"` Content string `json:"content"`
Path string `json:"path"` Path string `json:"path"`
Properties struct { Properties struct {
Height int `json:"height"` Height int `json:"height"`
Overwrite bool `json:"overwrite"` Overwrite bool `json:"overwrite"`
MimeType string `json:"mimeType"` MimeType string `json:"mimeType"`
} `json:"properties"` } `json:"properties"`
} }

View File

@ -1,13 +1,13 @@
package main package main
import ( import (
"git.bbr-dev.info/brajkovic/resource_manager/cache"
"git.bbr-dev.info/brajkovic/resource_manager/resource"
"github.com/gin-gonic/gin" "github.com/gin-gonic/gin"
"github.com/joho/godotenv" "github.com/joho/godotenv"
"log" "log"
"net/http" "net/http"
"os" "os"
"resource_manager/cache"
"resource_manager/resource"
"strings" "strings"
"time" "time"
) )

View File

@ -4,6 +4,7 @@ import (
"bytes" "bytes"
"context" "context"
"errors" "errors"
"git.bbr-dev.info/brajkovic/resource_manager/cache"
"github.com/aws/aws-sdk-go/aws" "github.com/aws/aws-sdk-go/aws"
"github.com/aws/aws-sdk-go/aws/session" "github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3" "github.com/aws/aws-sdk-go/service/s3"
@ -13,7 +14,6 @@ import (
"net/url" "net/url"
"os" "os"
"path/filepath" "path/filepath"
"resource_manager/cache"
"strconv" "strconv"
"strings" "strings"
"sync" "sync"

View File

@ -3,9 +3,9 @@ package resource
import ( import (
"bytes" "bytes"
"context" "context"
"git.bbr-dev.info/brajkovic/resource_manager/cache"
"log" "log"
"os" "os"
"resource_manager/cache"
"strings" "strings"
"time" "time"
) )