Total Lines | 14 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | package stubs |
||
2 | |||
3 | // APIUserCreateAPIKey is a dummy json response for the {baseURL}/apiuser/{APIUser}/apikey API |
||
4 | func APIUserCreateAPIKey() []byte { |
||
5 | return []byte(` |
||
6 | { |
||
7 | "apiKey": "f1db798c98df4bcf83b538175893bbf0" |
||
8 | } |
||
9 | `) |
||
10 | } |
||
11 | |||
12 | // APIUserGet is a dummy json response for the /v1_0/apiuser/{X-Reference-Id} API |
||
13 | func APIUserGet() []byte { |
||
14 | return []byte(` |
||
15 | { |
||
21 |