Skip to content

Commit

Permalink
Merge pull request #16 from hiroyoshii/change-gofmt
Browse files Browse the repository at this point in the history
update pkg
  • Loading branch information
hiroyoshii authored Sep 1, 2023
2 parents c573074 + 001557e commit 22593f9
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
3 changes: 2 additions & 1 deletion cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ package main
import (
"context"
"fmt"
"hiroyoshii/go-aas-proxy/internal/server"
"log/slog"
"net/http"
"os"
"os/signal"
"syscall"

"github.com/hiroyoshii/go-aas-proxy/internal/server"

"github.com/caarlos0/env"
)

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module hiroyoshii/go-aas-proxy
module github.com/hiroyoshii/go-aas-proxy

go 1.21

Expand Down
6 changes: 3 additions & 3 deletions internal/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ import (
"log/slog"
"net/http"

basyxAas "hiroyoshii/go-aas-proxy/gen/go"
"hiroyoshii/go-aas-proxy/internal/aas"
"hiroyoshii/go-aas-proxy/internal/submodel"
basyxAas "github.com/hiroyoshii/go-aas-proxy/gen/go"
"github.com/hiroyoshii/go-aas-proxy/internal/aas"
"github.com/hiroyoshii/go-aas-proxy/internal/submodel"

"github.com/labstack/echo/v4"
)
Expand Down
3 changes: 2 additions & 1 deletion internal/submodel/submodel.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,15 @@ import (
"database/sql"
"errors"
"fmt"
"hiroyoshii/go-aas-proxy/internal/sqlutility"
"log/slog"
"os"
"path/filepath"
"strings"
"sync"
"text/template"

"github.com/hiroyoshii/go-aas-proxy/internal/sqlutility"

"github.com/iancoleman/strcase"

"github.com/Masterminds/sprig/v3"
Expand Down

0 comments on commit 22593f9

Please sign in to comment.