Skip to content

Commit ca2c247

Browse files
authored
chore: variables are not exported (#10)
1 parent 861bb16 commit ca2c247

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

multiple.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ import (
1818
const spanName = "multipleSql"
1919

2020
var (
21-
DBTypeAttributeKey = attribute.Key("multiple_sql.type")
21+
dbTypeAttributeKey = attribute.Key("multiple_sql.type")
2222
followerDBSqlAttributeKey = attribute.Key("multiple_sql.follower_db")
23-
leaderTypeAttributeKey = DBTypeAttributeKey.String("leader")
24-
followerTypeAttributeKey = DBTypeAttributeKey.String("follower")
23+
leaderTypeAttributeKey = dbTypeAttributeKey.String("leader")
24+
followerTypeAttributeKey = dbTypeAttributeKey.String("follower")
2525
sqlDriverAttributeKey = attribute.Key("sql.driver")
2626
)
2727

0 commit comments

Comments
 (0)