Skip to content

Commit

Permalink
DB: Rearrange dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lkaybob committed Jan 4, 2024
1 parent d91b9b9 commit 64f0f85
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 3 additions & 1 deletion pkg/db/v1beta1/mysql/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ package mysql

import (
"fmt"

"k8s.io/klog"

"github.com/kubeflow/katib/pkg/db/v1beta1/common"
"github.com/kubeflow/katib/pkg/util/v1beta1/env"
"k8s.io/klog"
)

func (d *dbConn) DBInit() {
Expand Down
5 changes: 3 additions & 2 deletions pkg/db/v1beta1/postgres/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@ package postgres

import (
"fmt"
"github.com/kubeflow/katib/pkg/db/v1beta1/common"
"github.com/kubeflow/katib/pkg/util/v1beta1/env"

"k8s.io/klog"

"github.com/kubeflow/katib/pkg/db/v1beta1/common"
"github.com/kubeflow/katib/pkg/util/v1beta1/env"
)

func (d *dbConn) DBInit() {
Expand Down

0 comments on commit 64f0f85

Please sign in to comment.