this repo has no description

rename module

Signed-off-by: Marius Kimmina <mar.kimmina@gmail.com>

Changed files
+11 -11
cmd
leaflet-hugo-sync
internal
+5 -5
cmd/leaflet-hugo-sync/main.go
··· 8 8 "log" 9 9 "strings" 10 10 11 - "github.com/marius/leaflet-hugo-sync/internal/atproto" 12 - "github.com/marius/leaflet-hugo-sync/internal/config" 13 - "github.com/marius/leaflet-hugo-sync/internal/converter" 14 - "github.com/marius/leaflet-hugo-sync/internal/generator" 15 - "github.com/marius/leaflet-hugo-sync/internal/media" 11 + "mariuskimmina.com/leaflet-hugo-sync/internal/atproto" 12 + "mariuskimmina.com/leaflet-hugo-sync/internal/config" 13 + "mariuskimmina.com/leaflet-hugo-sync/internal/converter" 14 + "mariuskimmina.com/leaflet-hugo-sync/internal/generator" 15 + "mariuskimmina.com/leaflet-hugo-sync/internal/media" 16 16 ) 17 17 18 18 func lastPathPart(uri string) string {
+1 -1
flake.nix
··· 30 30 31 31 meta = with pkgs.lib; { 32 32 description = "Sync Leaflet (ATproto) blog posts to Hugo-compatible markdown"; 33 - homepage = "https://github.com/marius/leaflet-hugo-sync"; 33 + homepage = "https://github.com/mariuskimmina/leaflet-hugo-sync"; 34 34 license = licenses.mit; 35 35 mainProgram = "leaflet-hugo-sync"; 36 36 };
+1 -1
go.mod
··· 1 - module github.com/marius/leaflet-hugo-sync 1 + module mariuskimmina.com/leaflet-hugo-sync 2 2 3 3 go 1.25.5 4 4
+1 -1
internal/converter/markdown.go
··· 5 5 "fmt" 6 6 "strings" 7 7 8 - "github.com/marius/leaflet-hugo-sync/internal/atproto" 8 + "mariuskimmina.com/leaflet-hugo-sync/internal/atproto" 9 9 ) 10 10 11 11 type Converter struct {
+1 -1
internal/converter/markdown_test.go
··· 5 5 "strings" 6 6 "testing" 7 7 8 - "github.com/marius/leaflet-hugo-sync/internal/atproto" 8 + "mariuskimmina.com/leaflet-hugo-sync/internal/atproto" 9 9 ) 10 10 11 11 func TestConvertLeaflet_TextBlock(t *testing.T) {
+1 -1
internal/generator/hugo.go
··· 6 6 "path/filepath" 7 7 "text/template" 8 8 9 - "github.com/marius/leaflet-hugo-sync/internal/config" 9 + "mariuskimmina.com/leaflet-hugo-sync/internal/config" 10 10 ) 11 11 12 12 type Generator struct {
+1 -1
internal/generator/hugo_test.go
··· 5 5 "path/filepath" 6 6 "testing" 7 7 8 - "github.com/marius/leaflet-hugo-sync/internal/config" 8 + "mariuskimmina.com/leaflet-hugo-sync/internal/config" 9 9 ) 10 10 11 11 func TestGeneratePost(t *testing.T) {