Test Setup Failed
Push — main ( 1663fe...ca36bd )
by Acho
01:59
created

internal/stubs/apiuser.go   A

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
dl 0
loc 5
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A stubs.APIUserCreateAPIKey 0 2 1
1
package stubs
2
3
// APIUserCreateAPIKey is the json response for the {baseURL}/apiuser/{APIUser}/apikey API
4
func APIUserCreateAPIKey() []byte {
5
	return []byte(`
6
		{
7
        	"apiKey": "f1db798c98df4bcf83b538175893bbf0"
8
        }
9
`)
10
}
11