From 699692a9ed6c2841bcf9a5393fc9c9652b326685 Mon Sep 17 00:00:00 2001 From: "Sascha L. Teichmann" Date: Thu, 25 Nov 2021 12:30:37 +0100 Subject: [PATCH] Make it build under new repo location. --- cmd/csaf_provider/controller.go | 2 +- cmd/csaf_provider/extract.go | 2 +- cmd/csaf_provider/transaction.go | 2 +- go.mod | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/csaf_provider/controller.go b/cmd/csaf_provider/controller.go index 23d5ad7..9a5cf14 100644 --- a/cmd/csaf_provider/controller.go +++ b/cmd/csaf_provider/controller.go @@ -19,7 +19,7 @@ import ( "github.com/ProtonMail/gopenpgp/v2/crypto" - "github.com/Intevation/csaf_trusted/csaf" + "github.com/csaf-poc/csaf_distribution/csaf" ) const dateFormat = time.RFC3339 diff --git a/cmd/csaf_provider/extract.go b/cmd/csaf_provider/extract.go index ec69e1f..411f455 100644 --- a/cmd/csaf_provider/extract.go +++ b/cmd/csaf_provider/extract.go @@ -10,7 +10,7 @@ import ( "github.com/PaesslerAG/gval" "github.com/PaesslerAG/jsonpath" - "github.com/Intevation/csaf_trusted/csaf" + "github.com/csaf-poc/csaf_distribution/csaf" ) const ( diff --git a/cmd/csaf_provider/transaction.go b/cmd/csaf_provider/transaction.go index 760338e..886c53c 100644 --- a/cmd/csaf_provider/transaction.go +++ b/cmd/csaf_provider/transaction.go @@ -5,7 +5,7 @@ import ( "path/filepath" "strings" - "github.com/Intevation/csaf_trusted/csaf" + "github.com/csaf-poc/csaf_distribution/csaf" ) func newProviderMetadata(cfg *config) *csaf.ProviderMetadata { diff --git a/go.mod b/go.mod index 10ee198..a5397bb 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/Intevation/csaf_trusted +module github.com/csaf-poc/csaf_distribution go 1.17