1
0
Просмотр исходного кода

style: format code with Go fmt and Gofumpt

This commit fixes the style issues introduced in f9478a3 according to the output
from Go fmt and Gofumpt.

Details: https://github.com/gogs/gogs/pull/8105
deepsource-autofix[bot] 2 недель назад
Родитель
Сommit
d5954c42eb
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      internal/database/attachment.go

+ 1 - 1
internal/database/attachment.go

@@ -9,8 +9,8 @@ import (
 	"time"
 
 	"github.com/cockroachdb/errors"
-	"gorm.io/gorm"
 	gouuid "github.com/satori/go.uuid"
+	"gorm.io/gorm"
 
 	"gogs.io/gogs/internal/conf"
 	"gogs.io/gogs/internal/errutil"