Skip to content

Commit be413ca

Browse files
authored
refactor(fcm): move fcm package under push output plugin (#319)
The fcm package is only used in the push output plugin, so move it. Signed-off-by: Chris Gianelloni <[email protected]>
1 parent be7354c commit be413ca

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed
File renamed without changes.

output/push/push.go

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright 2023 Blink Labs Software
1+
// Copyright 2025 Blink Labs Software
22
//
33
// Licensed under the Apache License, Version 2.0 (the "License");
44
// you may not use this file except in compliance with the License.
@@ -20,13 +20,14 @@ import (
2020
"fmt"
2121
"os"
2222

23+
"github.com/blinklabs-io/gouroboros/cbor"
24+
"golang.org/x/oauth2/google"
25+
2326
"github.com/blinklabs-io/adder/event"
24-
"github.com/blinklabs-io/adder/fcm"
2527
"github.com/blinklabs-io/adder/input/chainsync"
2628
"github.com/blinklabs-io/adder/internal/logging"
29+
"github.com/blinklabs-io/adder/output/push/fcm"
2730
"github.com/blinklabs-io/adder/plugin"
28-
"github.com/blinklabs-io/gouroboros/cbor"
29-
"golang.org/x/oauth2/google"
3031
)
3132

3233
type PushOutput struct {

0 commit comments

Comments
 (0)