Updated module name

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

2
go.mod
View File

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

View File

@ -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"`
}

View File

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

View File

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