From fdddacf534ec98961da590b47b6b9b3cdb4e19fe Mon Sep 17 00:00:00 2001 From: sanek5g Date: Wed, 10 Jun 2026 17:18:37 +0300 Subject: [PATCH] pipeline --- watcher/cmd/watcher/main.go | 6 +++--- watcher/go.mod | 2 +- workers/analyse/go.mod | 2 +- workers/tagging/go.mod | 2 +- workers/transcribe/cmd/transcribe/main.go | 4 ++-- workers/transcribe/go.mod | 2 +- workers/transcribe/internal/consumer/consumer.go | 8 ++++---- workers/transcribe/internal/nexara/nexara.go | 2 +- workers/transcribe/internal/prompts/prompts.go | 2 +- 9 files changed, 15 insertions(+), 15 deletions(-) diff --git a/watcher/cmd/watcher/main.go b/watcher/cmd/watcher/main.go index 67862dd..7cad1b2 100644 --- a/watcher/cmd/watcher/main.go +++ b/watcher/cmd/watcher/main.go @@ -10,9 +10,9 @@ import ( amqp "github.com/rabbitmq/amqp091-go" - "github.com/yourorg/watcher/internal/config" - "github.com/yourorg/watcher/internal/publisher" - "github.com/yourorg/watcher/internal/scanner" + "github.com/postmet/watcher/internal/config" + "github.com/postmet/watcher/internal/publisher" + "github.com/postmet/watcher/internal/scanner" ) func main() { diff --git a/watcher/go.mod b/watcher/go.mod index 26fa9ce..640dafa 100644 --- a/watcher/go.mod +++ b/watcher/go.mod @@ -1,4 +1,4 @@ -module github.com/yourorg/watcher +module github.com/postmet/watcher go 1.22 diff --git a/workers/analyse/go.mod b/workers/analyse/go.mod index 9367c45..c88b9c1 100644 --- a/workers/analyse/go.mod +++ b/workers/analyse/go.mod @@ -1,4 +1,4 @@ -module github.com/yourorg/analyse +module github.com/postmet/analyse go 1.22 diff --git a/workers/tagging/go.mod b/workers/tagging/go.mod index ffb45e6..8f5724c 100644 --- a/workers/tagging/go.mod +++ b/workers/tagging/go.mod @@ -1,4 +1,4 @@ -module github.com/yourorg/tagging +module github.com/postmet/tagging go 1.22 diff --git a/workers/transcribe/cmd/transcribe/main.go b/workers/transcribe/cmd/transcribe/main.go index 9c5decd..f95028d 100644 --- a/workers/transcribe/cmd/transcribe/main.go +++ b/workers/transcribe/cmd/transcribe/main.go @@ -10,8 +10,8 @@ import ( amqp "github.com/rabbitmq/amqp091-go" - "github.com/yourorg/transcribe/internal/config" - "github.com/yourorg/transcribe/internal/consumer" + "github.com/postmet/transcribe/internal/config" + "github.com/postmet/transcribe/internal/consumer" ) func main() { diff --git a/workers/transcribe/go.mod b/workers/transcribe/go.mod index c5d54a6..0bc1e42 100644 --- a/workers/transcribe/go.mod +++ b/workers/transcribe/go.mod @@ -1,4 +1,4 @@ -module github.com/yourorg/transcribe +module github.com/postmet/transcribe go 1.22 diff --git a/workers/transcribe/internal/consumer/consumer.go b/workers/transcribe/internal/consumer/consumer.go index ea0c55a..09366f1 100644 --- a/workers/transcribe/internal/consumer/consumer.go +++ b/workers/transcribe/internal/consumer/consumer.go @@ -9,10 +9,10 @@ import ( amqp "github.com/rabbitmq/amqp091-go" - "github.com/yourorg/transcribe/internal/config" - "github.com/yourorg/transcribe/internal/models" - "github.com/yourorg/transcribe/internal/nexara" - "github.com/yourorg/transcribe/internal/prompts" + "github.com/postmet/transcribe/internal/config" + "github.com/postmet/transcribe/internal/models" + "github.com/postmet/transcribe/internal/nexara" + "github.com/postmet/transcribe/internal/prompts" ) type Consumer struct { diff --git a/workers/transcribe/internal/nexara/nexara.go b/workers/transcribe/internal/nexara/nexara.go index 66afc4f..f84c38a 100644 --- a/workers/transcribe/internal/nexara/nexara.go +++ b/workers/transcribe/internal/nexara/nexara.go @@ -13,7 +13,7 @@ import ( "strings" "time" - "github.com/yourorg/transcribe/internal/models" + "github.com/postmet/transcribe/internal/models" ) type Client struct { diff --git a/workers/transcribe/internal/prompts/prompts.go b/workers/transcribe/internal/prompts/prompts.go index 9b8cbc1..0a03a4f 100644 --- a/workers/transcribe/internal/prompts/prompts.go +++ b/workers/transcribe/internal/prompts/prompts.go @@ -11,7 +11,7 @@ import ( "strings" "time" - "github.com/yourorg/transcribe/internal/models" + "github.com/postmet/transcribe/internal/models" ) type Loader struct {