Skip to content

Commit c75fb4c

Browse files
committed
Move path constant to a separate file
1 parent 38bd614 commit c75fb4c

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

const.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
package tfe
2+
3+
const (
4+
AuthenticationTokensPath = "authentication-tokens/%s"
5+
)

team_token.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ import (
1313
// Compile-time proof of interface implementation.
1414
var _ TeamTokens = (*teamTokens)(nil)
1515

16-
const (
17-
AuthenticationTokensPath = "authentication-tokens/%s"
18-
)
19-
2016
// TeamTokens describes all the team token related methods that the
2117
// Terraform Enterprise API supports.
2218
//

0 commit comments

Comments
 (0)