Skip to content

Commit

Permalink
module
Browse files Browse the repository at this point in the history
  • Loading branch information
agarkov.pavel3 committed Apr 29, 2024
1 parent 8e50220 commit bd85415
Show file tree
Hide file tree
Showing 13 changed files with 7 additions and 5 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package event_dispatcher

import (
"github.com/PavelAgarkov/struct-snapshot/internal/event"
"github.com/PavelAgarkov/struct-snapshot/internal/subscriber"
"github.com/PavelAgarkov/struct-snapshot/event"
"github.com/PavelAgarkov/struct-snapshot/subscriber"
"slices"
)

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package subscriber

import (
"fmt"
"github.com/PavelAgarkov/struct-snapshot/internal/event"
"github.com/PavelAgarkov/struct-snapshot/event"
)

type FunSubscriber struct {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package subscriber

import (
"fmt"
"github.com/PavelAgarkov/struct-snapshot/internal/event"
"github.com/PavelAgarkov/struct-snapshot/event"
)

type OrderSubscriber struct {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
package subscriber

import "github.com/PavelAgarkov/struct-snapshot/internal/event"
import (
"github.com/PavelAgarkov/struct-snapshot/event"
)

type Subscriber interface {
SetListenEvents(events []event.ListeningEvent)
Expand Down

0 comments on commit bd85415

Please sign in to comment.