mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2024-12-25 21:07:18 +00:00
12 lines
152 B
Go
12 lines
152 B
Go
|
package slasher
|
||
|
|
||
|
import (
|
||
|
"github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
var log = logrus.WithField("prefix", "slasher")
|
||
|
|
||
|
type Service struct {
|
||
|
params *Parameters
|
||
|
}
|