Skip to content

Commit

Permalink
Change repository name
Browse files Browse the repository at this point in the history
  • Loading branch information
eduardolat committed Aug 11, 2024
1 parent bca8f6a commit 2994c2c
Show file tree
Hide file tree
Showing 16 changed files with 29 additions and 29 deletions.
4 changes: 2 additions & 2 deletions cmd/app/main.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package main

import (
"github.com/eduardolat/generate-logo/internal/logger"
"github.com/eduardolat/generate-logo/internal/web"
"github.com/eduardolat/generate-logo-online/internal/logger"
"github.com/eduardolat/generate-logo-online/internal/web"
"github.com/labstack/echo/v4"
)

Expand Down
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: generate-logo
name: generate-logo-online

services:
app:
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 github.com/eduardolat/generate-logo
module github.com/eduardolat/generate-logo-online

go 1.22.5

Expand Down
2 changes: 1 addition & 1 deletion internal/logger/kv.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package logger

import "github.com/eduardolat/generate-logo/internal/util/maputil"
import "github.com/eduardolat/generate-logo-online/internal/util/maputil"

// KV is a record of key-value pair to be logged
type KV map[string]any
Expand Down
2 changes: 1 addition & 1 deletion internal/web/component/modal.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package component
import (
"fmt"

"github.com/eduardolat/generate-logo/internal/web/alpine"
"github.com/eduardolat/generate-logo-online/internal/web/alpine"
lucide "github.com/eduardolat/gomponents-lucide"
"github.com/google/uuid"
"github.com/maragudk/gomponents"
Expand Down
2 changes: 1 addition & 1 deletion internal/web/layout/base.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package layout

import (
"github.com/eduardolat/generate-logo/internal/web/alpine"
"github.com/eduardolat/generate-logo-online/internal/web/alpine"
"github.com/maragudk/gomponents"
"github.com/maragudk/gomponents/components"
"github.com/maragudk/gomponents/html"
Expand Down
6 changes: 3 additions & 3 deletions internal/web/layout/base_header.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package layout

import (
"github.com/eduardolat/generate-logo/internal/web/alpine"
"github.com/eduardolat/generate-logo/internal/web/component"
"github.com/eduardolat/generate-logo-online/internal/web/alpine"
"github.com/eduardolat/generate-logo-online/internal/web/component"
lucide "github.com/eduardolat/gomponents-lucide"
"github.com/maragudk/gomponents"
"github.com/maragudk/gomponents/components"
Expand Down Expand Up @@ -45,7 +45,7 @@ func baseHeader() gomponents.Node {
html.Li(
html.A(
html.Class("btn btn-neutral space-x-1"),
html.Href("https://github.com/eduardolat/generate-logo"),
html.Href("https://github.com/eduardolat/generate-logo-online"),
html.Target("_blank"),
lucide.Github(),
component.SpanText("GitHub"),
Expand Down
4 changes: 2 additions & 2 deletions internal/web/page/index.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ package page
import (
"net/http"

"github.com/eduardolat/generate-logo/internal/util/echoutil"
"github.com/eduardolat/generate-logo/internal/web/layout"
"github.com/eduardolat/generate-logo-online/internal/util/echoutil"
"github.com/eduardolat/generate-logo-online/internal/web/layout"
"github.com/labstack/echo/v4"
"github.com/maragudk/gomponents"
"github.com/maragudk/gomponents/html"
Expand Down
2 changes: 1 addition & 1 deletion internal/web/page/index_editor.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package page

import (
"github.com/eduardolat/generate-logo/internal/web/alpine"
"github.com/eduardolat/generate-logo-online/internal/web/alpine"
"github.com/maragudk/gomponents"
"github.com/maragudk/gomponents/components"
"github.com/maragudk/gomponents/html"
Expand Down
4 changes: 2 additions & 2 deletions internal/web/page/index_editor_bg.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package page

import (
"github.com/eduardolat/generate-logo/internal/web/alpine"
"github.com/eduardolat/generate-logo/internal/web/component"
"github.com/eduardolat/generate-logo-online/internal/web/alpine"
"github.com/eduardolat/generate-logo-online/internal/web/component"
"github.com/maragudk/gomponents"
"github.com/maragudk/gomponents/html"
)
Expand Down
4 changes: 2 additions & 2 deletions internal/web/page/index_editor_download.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package page

import (
"github.com/eduardolat/generate-logo/internal/web/alpine"
"github.com/eduardolat/generate-logo/internal/web/component"
"github.com/eduardolat/generate-logo-online/internal/web/alpine"
"github.com/eduardolat/generate-logo-online/internal/web/component"
lucide "github.com/eduardolat/gomponents-lucide"
"github.com/maragudk/gomponents"
"github.com/maragudk/gomponents/html"
Expand Down
6 changes: 3 additions & 3 deletions internal/web/page/index_editor_icon.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package page

import (
"github.com/eduardolat/generate-logo/internal/web/alpine"
"github.com/eduardolat/generate-logo/internal/web/component"
"github.com/eduardolat/generate-logo/internal/web/htmx"
"github.com/eduardolat/generate-logo-online/internal/web/alpine"
"github.com/eduardolat/generate-logo-online/internal/web/component"
"github.com/eduardolat/generate-logo-online/internal/web/htmx"
lucide "github.com/eduardolat/gomponents-lucide"
"github.com/maragudk/gomponents"
"github.com/maragudk/gomponents/html"
Expand Down
4 changes: 2 additions & 2 deletions internal/web/page/index_preview.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package page

import (
"github.com/eduardolat/generate-logo/internal/web/alpine"
"github.com/eduardolat/generate-logo/internal/web/component"
"github.com/eduardolat/generate-logo-online/internal/web/alpine"
"github.com/eduardolat/generate-logo-online/internal/web/component"
"github.com/maragudk/gomponents"
"github.com/maragudk/gomponents/components"
"github.com/maragudk/gomponents/html"
Expand Down
8 changes: 4 additions & 4 deletions internal/web/page/search_icon.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ package page
import (
"net/http"

"github.com/eduardolat/generate-logo/internal/icons"
"github.com/eduardolat/generate-logo/internal/util/echoutil"
"github.com/eduardolat/generate-logo/internal/web/alpine"
"github.com/eduardolat/generate-logo/internal/web/component"
"github.com/eduardolat/generate-logo-online/internal/icons"
"github.com/eduardolat/generate-logo-online/internal/util/echoutil"
"github.com/eduardolat/generate-logo-online/internal/web/alpine"
"github.com/eduardolat/generate-logo-online/internal/web/component"
"github.com/labstack/echo/v4"
"github.com/maragudk/gomponents"
"github.com/maragudk/gomponents/html"
Expand Down
4 changes: 2 additions & 2 deletions internal/web/router.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package web

import (
"github.com/eduardolat/generate-logo/internal/web/page"
"github.com/eduardolat/generate-logo/internal/web/static"
"github.com/eduardolat/generate-logo-online/internal/web/page"
"github.com/eduardolat/generate-logo-online/internal/web/static"
"github.com/labstack/echo/v4"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/web/static/js/alpine.js
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ export function initAlpine () {
}

console.log('✨ Generate Logo Online initialized!')
console.log('Star on GitHub: https://github.com/eduardolat/generate-logo')
console.log('Star on GitHub: https://github.com/eduardolat/generate-logo-online')
}
}))
})
Expand Down

0 comments on commit 2994c2c

Please sign in to comment.