Skip to content

Commit 9a5cf23

Browse files
Nementonp1-ra
authored andcommitted
update golden-record
1 parent 9907434 commit 9a5cf23

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

Diff for: end_to_end_tests/custom-templates-golden-record/my_test_api_client/api/__init__.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
""" Contains methods for accessing the API """
22

3-
43
from typing import Type
54

65
from my_test_api_client.api.default import DefaultEndpoints
6+
from my_test_api_client.api.parameters import ParametersEndpoints
77
from my_test_api_client.api.tests import TestsEndpoints
88

99

@@ -15,3 +15,7 @@ def tests(cls) -> Type[TestsEndpoints]:
1515
@classmethod
1616
def default(cls) -> Type[DefaultEndpoints]:
1717
return DefaultEndpoints
18+
19+
@classmethod
20+
def parameters(cls) -> Type[ParametersEndpoints]:
21+
return ParametersEndpoints

Diff for: end_to_end_tests/custom-templates-golden-record/my_test_api_client/api/default/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
""" Contains methods for accessing the API Endpoints """
22

3-
43
import types
54

65
from my_test_api_client.api.default import get_common_parameters, post_common_parameters
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
""" Contains methods for accessing the API Endpoints """
2+
3+
import types
4+
5+
from my_test_api_client.api.parameters import get_same_name_multiple_locations_param
6+
7+
8+
class ParametersEndpoints:
9+
@classmethod
10+
def get_same_name_multiple_locations_param(cls) -> types.ModuleType:
11+
return get_same_name_multiple_locations_param

Diff for: end_to_end_tests/custom-templates-golden-record/my_test_api_client/api/tests/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
""" Contains methods for accessing the API Endpoints """
22

3-
43
import types
54

65
from my_test_api_client.api.tests import (

0 commit comments

Comments
 (0)