move to codeberg (#22)

This commit is contained in:
T. von Dein
2025-11-03 09:15:27 +01:00
parent eb39f57199
commit a16b9e796c
26 changed files with 189 additions and 224 deletions

View File

@@ -517,7 +517,7 @@ REST API
BUGS
In order to report a bug, unexpected behavior, feature requests or to
submit a patch, please open an issue on github:
<https://github.com/TLINDEN/anydb/issues>.
<https://codeberg.org/scip/anydb/issues>.
Please repeat the failing command with debugging enabled "-d" and
include the output in the issue.

View File

@@ -22,9 +22,9 @@ import (
"strings"
"github.com/spf13/cobra"
"github.com/tlinden/anydb/app"
"github.com/tlinden/anydb/cfg"
"github.com/tlinden/anydb/output"
"codeberg.org/scip/anydb/app"
"codeberg.org/scip/anydb/cfg"
"codeberg.org/scip/anydb/output"
)
func Set(conf *cfg.Config) *cobra.Command {

View File

@@ -26,10 +26,10 @@ import (
"os/exec"
"github.com/spf13/cobra"
"github.com/tlinden/anydb/app"
"github.com/tlinden/anydb/cfg"
"github.com/tlinden/anydb/output"
"github.com/tlinden/anydb/rest"
"codeberg.org/scip/anydb/app"
"codeberg.org/scip/anydb/cfg"
"codeberg.org/scip/anydb/output"
"codeberg.org/scip/anydb/rest"
)
func Export(conf *cfg.Config) *cobra.Command {

View File

@@ -25,8 +25,8 @@ import (
"runtime/debug"
"github.com/spf13/cobra"
"github.com/tlinden/anydb/app"
"github.com/tlinden/anydb/cfg"
"codeberg.org/scip/anydb/app"
"codeberg.org/scip/anydb/cfg"
"github.com/tlinden/yadu"
)