Skip to content

Commit

Permalink
Prepared packages for release
Browse files Browse the repository at this point in the history
  • Loading branch information
codemental committed Feb 9, 2024
1 parent ac60aed commit e935012
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
6 changes: 3 additions & 3 deletions clarum.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package clarum

import (
"github.com/goclarum/clarum/core/config"
"github.com/goclarum/clarum/core/control"
"github.com/goclarum/clarum/core/logging"
"github.com/go-clarum/clarum-core/config"
"github.com/go-clarum/clarum-core/control"
"github.com/go-clarum/clarum-core/logging"
)

func Setup() {
Expand Down
4 changes: 2 additions & 2 deletions config/config.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package config

import (
"github.com/goclarum/clarum/core/files"
"github.com/goclarum/clarum/core/logging"
"github.com/go-clarum/clarum-core/files"
"github.com/go-clarum/clarum-core/logging"
"gopkg.in/yaml.v3"
"log/slog"
"path"
Expand Down
2 changes: 1 addition & 1 deletion config/defaults.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package config

import (
"github.com/goclarum/clarum/core/validators/strings"
"github.com/go-clarum/clarum-core/validators/strings"
"log/slog"
)

Expand Down
4 changes: 2 additions & 2 deletions files/files.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ package files

import (
"errors"
"github.com/goclarum/clarum/core/logging"
"github.com/goclarum/clarum/core/validators/strings"
"github.com/go-clarum/clarum-core/logging"
"github.com/go-clarum/clarum-core/validators/strings"
"gopkg.in/yaml.v3"
"os"
)
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/goclarum/clarum/core
module github.com/go-clarum/clarum-core

go 1.21

Expand Down
10 changes: 5 additions & 5 deletions orchestration/command/endpoint.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ package command
import (
"context"
"fmt"
"github.com/goclarum/clarum/core/config"
"github.com/goclarum/clarum/core/control"
"github.com/goclarum/clarum/core/durations"
"github.com/goclarum/clarum/core/logging"
clarumstrings "github.com/goclarum/clarum/core/validators/strings"
"github.com/go-clarum/clarum-core/config"
"github.com/go-clarum/clarum-core/control"
"github.com/go-clarum/clarum-core/durations"
"github.com/go-clarum/clarum-core/logging"
clarumstrings "github.com/go-clarum/clarum-core/validators/strings"
"os/exec"
"time"
)
Expand Down

0 comments on commit e935012

Please sign in to comment.