diff --git a/Makefile b/Makefile index 4cef402..227fcb4 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ run: build ./$(BINARY) docker-build: - docker build -t lambda-iot-core:latest . + docker build -t lambdaiot-core:latest . test: go test ./... -v diff --git a/cmd/server/main.go b/cmd/server/main.go index 81deabd..505540a 100644 --- a/cmd/server/main.go +++ b/cmd/server/main.go @@ -11,8 +11,8 @@ import ( "github.com/gin-gonic/gin" - "github.com/kristjank/lambda-iot/core/internal/handler" - "github.com/kristjank/lambda-iot/core/internal/middleware" + "git.piskot.si/SeminarM2/lambdaiot-core/internal/handler" + "git.piskot.si/SeminarM2/lambdaiot-core/internal/middleware" ) func main() { diff --git a/go.mod b/go.mod index 5db9a56..7bd0956 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/kristjank/lambda-iot/core +module git.piskot.si/SeminarM2/lambdaiot-core go 1.21 diff --git a/readme.md b/readme.md index 39dd3df..594da57 100644 --- a/readme.md +++ b/readme.md @@ -2,6 +2,8 @@ This repository contains a minimal Go REST service used as the backend for the Lambda-IoT project. +Repository: https://git.piskot.si/SeminarM2/lambdaiot-core + ## Features ✅ - Simple HTTP server with two endpoints: @@ -37,7 +39,7 @@ make docker-build Then run it: ```bash -docker run -p 8080:8080 lambda-iot-core:latest +docker run -p 8080:8080 lambdaiot-core:latest ``` ### Endpoints