Update pkg references

This commit is contained in:
2022-04-21 22:27:20 +02:00
parent 835231cd42
commit 55de3ee25d
15 changed files with 24 additions and 24 deletions

View File

@@ -7,7 +7,7 @@ import (
"github.com/apex/log"
"github.com/speedrunsh/speedrun/proto/portal"
"github.com/dpogorzelski/speedrun/proto/portal"
)
func (s *Server) RunCommand(ctx context.Context, in *portal.CommandRequest) (*portal.CommandResponse, error) {

View File

@@ -1,6 +1,6 @@
package portal
import "github.com/speedrunsh/speedrun/proto/portal"
import "github.com/dpogorzelski/speedrun/proto/portal"
type Server struct {
portal.DRPCPortalUnimplementedServer

View File

@@ -7,7 +7,7 @@ import (
"github.com/apex/log"
"github.com/coreos/go-systemd/v22/dbus"
"github.com/speedrunsh/speedrun/proto/portal"
"github.com/dpogorzelski/speedrun/proto/portal"
)
func (s *Server) ServiceRestart(ctx context.Context, service *portal.ServiceRequest) (*portal.ServiceResponse, error) {

View File

@@ -6,8 +6,8 @@ import (
"github.com/antonmedv/expr"
"github.com/apex/log"
"github.com/dpogorzelski/speedrun/pkg/common/cryptoutil"
"github.com/pkg/errors"
"github.com/speedrunsh/speedrun/pkg/common/cryptoutil"
"github.com/spf13/viper"
)