Skip to content
Snippets Groups Projects
Commit 62a88db8 authored by Semyon Krestyaninov's avatar Semyon Krestyaninov :dog2:
Browse files

Пакет service вынесен на корневой уровень

parent 58478a6b
No related branches found
No related tags found
No related merge requests found
......@@ -9,8 +9,8 @@ import (
"git.perx.ru/perxis/perxis-go/pkg/members"
"git.perx.ru/perxis/perxis-go/pkg/permission"
"git.perx.ru/perxis/perxis-go/pkg/roles"
"git.perx.ru/perxis/perxis-go/pkg/service"
"git.perx.ru/perxis/perxis-go/pkg/spaces"
"git.perx.ru/perxis/perxis-go/service"
)
type Anonymous struct {
......
......@@ -11,8 +11,8 @@ import (
"git.perx.ru/perxis/perxis-go/pkg/members"
"git.perx.ru/perxis/perxis-go/pkg/permission"
"git.perx.ru/perxis/perxis-go/pkg/roles"
"git.perx.ru/perxis/perxis-go/pkg/service"
"git.perx.ru/perxis/perxis-go/pkg/spaces"
"git.perx.ru/perxis/perxis-go/service"
)
type ClientPrincipal struct {
......
......@@ -10,9 +10,9 @@ import (
"git.perx.ru/perxis/perxis-go/pkg/members"
"git.perx.ru/perxis/perxis-go/pkg/permission"
"git.perx.ru/perxis/perxis-go/pkg/roles"
"git.perx.ru/perxis/perxis-go/pkg/service"
"git.perx.ru/perxis/perxis-go/pkg/spaces"
"git.perx.ru/perxis/perxis-go/pkg/users"
"git.perx.ru/perxis/perxis-go/service"
)
type UserPrincipal struct {
......
......@@ -4,7 +4,7 @@ import (
"fmt"
"time"
"git.perx.ru/perxis/perxis-go/pkg/service"
"git.perx.ru/perxis/perxis-go/service"
lru "github.com/hashicorp/golang-lru/v2"
"go.uber.org/zap"
)
......
package clients
import "git.perx.ru/perxis/perxis-go/pkg/service"
import (
"git.perx.ru/perxis/perxis-go/service"
)
var (
ErrAccessDenied = service.ErrAccessDenied
......
package collaborators
import (
"git.perx.ru/perxis/perxis-go/pkg/service"
"git.perx.ru/perxis/perxis-go/service"
)
var (
......
......@@ -3,7 +3,7 @@ package collections
import (
"errors"
"git.perx.ru/perxis/perxis-go/pkg/service"
"git.perx.ru/perxis/perxis-go/service"
)
var (
......
......@@ -2,7 +2,7 @@ package environments
import (
"git.perx.ru/perxis/perxis-go/pkg/errors"
"git.perx.ru/perxis/perxis-go/pkg/service"
"git.perx.ru/perxis/perxis-go/service"
)
var (
......
......@@ -3,7 +3,7 @@ package items
import (
"errors"
"git.perx.ru/perxis/perxis-go/pkg/service"
"git.perx.ru/perxis/perxis-go/service"
)
var (
......
......@@ -2,7 +2,7 @@ package locales
import (
"git.perx.ru/perxis/perxis-go/pkg/errors"
"git.perx.ru/perxis/perxis-go/pkg/service"
"git.perx.ru/perxis/perxis-go/service"
)
var (
......
package members
import (
"git.perx.ru/perxis/perxis-go/pkg/service"
"git.perx.ru/perxis/perxis-go/service"
)
var (
......
package roles
import "git.perx.ru/perxis/perxis-go/pkg/service"
import (
"git.perx.ru/perxis/perxis-go/service"
)
var (
ErrAccessDenied = service.ErrAccessDenied
......
......@@ -2,7 +2,7 @@ package spaces
import (
"git.perx.ru/perxis/perxis-go/pkg/errors"
"git.perx.ru/perxis/perxis-go/pkg/service"
"git.perx.ru/perxis/perxis-go/service"
)
var (
......
package users
import "git.perx.ru/perxis/perxis-go/pkg/service"
import (
"git.perx.ru/perxis/perxis-go/service"
)
var (
ErrAccessDenied = service.ErrAccessDenied
......
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment