package rpc
import (
"github.com/asymmetric-research/solana-exporter/pkg/slog"
"os"
"testing"
)
func TestMain(m *testing.M) {
slog.Init()
code := m.Run()
os.Exit(code)
}