Skip to content

Commit

Permalink
Refactor mod name to compliance framework
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-cmsoft committed Dec 16, 2024
1 parent d5b86a9 commit ebde028
Show file tree
Hide file tree
Showing 10 changed files with 13 additions and 13 deletions.
8 changes: 4 additions & 4 deletions cmd/agent.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package cmd

import (
"fmt"
"github.com/chris-cmsoft/concom/internal/event"
"github.com/compliance-framework/agent/internal/event"
"go.mongodb.org/mongo-driver/bson/primitive"
"log"
"os"
Expand All @@ -14,9 +14,9 @@ import (
"syscall"
"time"

"github.com/chris-cmsoft/concom/internal"
"github.com/chris-cmsoft/concom/runner"
"github.com/chris-cmsoft/concom/runner/proto"
"github.com/compliance-framework/agent/internal"
"github.com/compliance-framework/agent/runner"
"github.com/compliance-framework/agent/runner/proto"
"github.com/compliance-framework/gooci/pkg/oci"
"github.com/coreos/go-systemd/v22/daemon"
"github.com/fsnotify/fsnotify"
Expand Down
2 changes: 1 addition & 1 deletion cmd/download-plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"path"

"github.com/chris-cmsoft/concom/internal"
"github.com/compliance-framework/agent/internal"
"github.com/compliance-framework/gooci/pkg/oci"
"github.com/google/go-containerregistry/pkg/name"
"github.com/hashicorp/go-hclog"
Expand Down
2 changes: 1 addition & 1 deletion cmd/download-policies.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"os"
"path"

"github.com/chris-cmsoft/concom/internal"
"github.com/compliance-framework/agent/internal"
"github.com/compliance-framework/gooci/pkg/oci"
"github.com/google/go-containerregistry/pkg/name"
"github.com/hashicorp/go-hclog"
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/chris-cmsoft/concom
module github.com/compliance-framework/agent

go 1.23.2

Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package main

import (
"fmt"
"github.com/chris-cmsoft/concom/cmd"
"github.com/compliance-framework/agent/cmd"
"github.com/spf13/cobra"
"os"
)
Expand Down
2 changes: 1 addition & 1 deletion runner/grpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package runner

import (
"context"
"github.com/chris-cmsoft/concom/runner/proto"
"github.com/compliance-framework/agent/runner/proto"
)

// GRPCClient is an implementation of KV that talks over RPC.
Expand Down
2 changes: 1 addition & 1 deletion runner/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package runner

import (
"context"
"github.com/chris-cmsoft/concom/runner/proto"
"github.com/compliance-framework/agent/runner/proto"
"github.com/hashicorp/go-plugin"
"google.golang.org/grpc"
)
Expand Down
2 changes: 1 addition & 1 deletion runner/result.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package runner

import "github.com/chris-cmsoft/concom/runner/proto"
import "github.com/compliance-framework/agent/runner/proto"

type Result struct {
Status proto.ExecutionStatus `json:"status"`
Expand Down
2 changes: 1 addition & 1 deletion runner/util.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package runner

import "github.com/chris-cmsoft/concom/runner/proto"
import "github.com/compliance-framework/agent/runner/proto"

type CallableEvalResponse struct {
*proto.EvalResponse
Expand Down
2 changes: 1 addition & 1 deletion runner/util_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package runner

import (
"github.com/chris-cmsoft/concom/runner/proto"
"github.com/compliance-framework/agent/runner/proto"
"github.com/google/uuid"
"testing"
)
Expand Down

0 comments on commit ebde028

Please sign in to comment.