rename succes
This commit is contained in:
parent
3b5b2c8f1e
commit
ff3a93083b
10
app/app.go
10
app/app.go
@ -9,11 +9,11 @@ import (
|
|||||||
"go.uber.org/zap/zapcore"
|
"go.uber.org/zap/zapcore"
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
"net"
|
"net"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/dal/clickhouse"
|
"gitea.pena/PenaSide/trashlog/dal/clickhouse"
|
||||||
trashlogProto "penahub.gitlab.yandexcloud.net/external/trashlog/proto/generated"
|
trashlogProto "gitea.pena/PenaSide/trashlog/proto/generated"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/sink"
|
"gitea.pena/PenaSide/trashlog/sink"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/version"
|
"gitea.pena/PenaSide/trashlog/version"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/wrappers/zaptg"
|
"gitea.pena/PenaSide/trashlog/wrappers/zaptg"
|
||||||
)
|
)
|
||||||
|
|
||||||
type App struct {
|
type App struct {
|
||||||
|
@ -7,8 +7,8 @@ import (
|
|||||||
bolt "go.etcd.io/bbolt"
|
bolt "go.etcd.io/bbolt"
|
||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
"os"
|
"os"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/dal/bbolt"
|
"gitea.pena/PenaSide/trashlog/dal/bbolt"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/model"
|
"gitea.pena/PenaSide/trashlog/model"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
"github.com/rs/xid"
|
"github.com/rs/xid"
|
||||||
bolt "go.etcd.io/bbolt"
|
bolt "go.etcd.io/bbolt"
|
||||||
"os"
|
"os"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/model"
|
"gitea.pena/PenaSide/trashlog/model"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -6,8 +6,8 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"github.com/ClickHouse/clickhouse-go"
|
"github.com/ClickHouse/clickhouse-go"
|
||||||
"github.com/themakers/hlog"
|
"github.com/themakers/hlog"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/dal/bbolt"
|
"gitea.pena/PenaSide/trashlog/dal/bbolt"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/model"
|
"gitea.pena/PenaSide/trashlog/model"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
@ -9,7 +9,7 @@ import (
|
|||||||
"github.com/themakers/bdd"
|
"github.com/themakers/bdd"
|
||||||
"github.com/themakers/hlog"
|
"github.com/themakers/hlog"
|
||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/model"
|
"gitea.pena/PenaSide/trashlog/model"
|
||||||
"strings"
|
"strings"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
|
2
go.mod
2
go.mod
@ -1,4 +1,4 @@
|
|||||||
module penahub.gitlab.yandexcloud.net/external/trashlog
|
module gitea.pena/PenaSide/trashlog
|
||||||
|
|
||||||
go 1.22.0
|
go 1.22.0
|
||||||
|
|
||||||
|
2
main.go
2
main.go
@ -2,7 +2,7 @@ package main
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"github.com/skeris/appInit"
|
"github.com/skeris/appInit"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/app"
|
"gitea.pena/PenaSide/trashlog/app"
|
||||||
_ "penahub.gitlab.yandexcloud.net/devops/linters/golang.git/pkg/dummy"
|
_ "penahub.gitlab.yandexcloud.net/devops/linters/golang.git/pkg/dummy"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -4,9 +4,9 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"github.com/themakers/hlog"
|
"github.com/themakers/hlog"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/dal/clickhouse"
|
"gitea.pena/PenaSide/trashlog/dal/clickhouse"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/model"
|
"gitea.pena/PenaSide/trashlog/model"
|
||||||
trashlogProto "penahub.gitlab.yandexcloud.net/external/trashlog/proto/generated"
|
trashlogProto "gitea.pena/PenaSide/trashlog/proto/generated"
|
||||||
)
|
)
|
||||||
|
|
||||||
type Sink struct {
|
type Sink struct {
|
||||||
|
@ -6,7 +6,7 @@ import (
|
|||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
pb "penahub.gitlab.yandexcloud.net/external/trashlog/proto/generated"
|
pb "gitea.pena/PenaSide/trashlog/proto/generated"
|
||||||
)
|
)
|
||||||
|
|
||||||
var _ = Describe("Sink", func() {
|
var _ = Describe("Sink", func() {
|
||||||
|
@ -12,7 +12,7 @@ import (
|
|||||||
"google.golang.org/grpc/credentials/insecure"
|
"google.golang.org/grpc/credentials/insecure"
|
||||||
"io"
|
"io"
|
||||||
"os"
|
"os"
|
||||||
pb "penahub.gitlab.yandexcloud.net/external/trashlog/proto/generated"
|
pb "gitea.pena/PenaSide/trashlog/proto/generated"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
"go.uber.org/zap/zapcore"
|
"go.uber.org/zap/zapcore"
|
||||||
tb "gopkg.in/tucnak/telebot.v2"
|
tb "gopkg.in/tucnak/telebot.v2"
|
||||||
pb "penahub.gitlab.yandexcloud.net/external/trashlog/proto/generated"
|
pb "gitea.pena/PenaSide/trashlog/proto/generated"
|
||||||
"strings"
|
"strings"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -7,7 +7,7 @@ import (
|
|||||||
"github.com/themakers/hlog"
|
"github.com/themakers/hlog"
|
||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
"go.uber.org/zap/zapcore"
|
"go.uber.org/zap/zapcore"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/wrappers/zaptg"
|
"gitea.pena/PenaSide/trashlog/wrappers/zaptg"
|
||||||
)
|
)
|
||||||
|
|
||||||
var _ = Describe("Zaptg", func() {
|
var _ = Describe("Zaptg", func() {
|
||||||
|
@ -8,10 +8,10 @@ import (
|
|||||||
"google.golang.org/grpc"
|
"google.golang.org/grpc"
|
||||||
"google.golang.org/grpc/backoff"
|
"google.golang.org/grpc/backoff"
|
||||||
"google.golang.org/grpc/credentials/insecure"
|
"google.golang.org/grpc/credentials/insecure"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/dal/bbolt"
|
"gitea.pena/PenaSide/trashlog/dal/bbolt"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/model"
|
"gitea.pena/PenaSide/trashlog/model"
|
||||||
pb "penahub.gitlab.yandexcloud.net/external/trashlog/proto/generated"
|
pb "gitea.pena/PenaSide/trashlog/proto/generated"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/sink"
|
"gitea.pena/PenaSide/trashlog/sink"
|
||||||
"strings"
|
"strings"
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
@ -6,12 +6,12 @@ import (
|
|||||||
"fmt"
|
"fmt"
|
||||||
"github.com/skeris/appInit"
|
"github.com/skeris/appInit"
|
||||||
bolt "go.etcd.io/bbolt"
|
bolt "go.etcd.io/bbolt"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/app"
|
"gitea.pena/PenaSide/trashlog/app"
|
||||||
|
|
||||||
. "github.com/onsi/ginkgo"
|
. "github.com/onsi/ginkgo"
|
||||||
. "github.com/onsi/gomega"
|
. "github.com/onsi/gomega"
|
||||||
"github.com/themakers/hlog"
|
"github.com/themakers/hlog"
|
||||||
"penahub.gitlab.yandexcloud.net/external/trashlog/wrappers/zaptrashlog"
|
"gitea.pena/PenaSide/trashlog/wrappers/zaptrashlog"
|
||||||
//bolt "go.etcd.io/bbolt"
|
//bolt "go.etcd.io/bbolt"
|
||||||
"go.uber.org/zap"
|
"go.uber.org/zap"
|
||||||
"go.uber.org/zap/zapcore"
|
"go.uber.org/zap/zapcore"
|
||||||
|
Loading…
Reference in New Issue
Block a user