Skip to content

Commit 8003156

Browse files
committed
feat dart: add pubName to all remaining library parts
1 parent a5351f7 commit 8003156

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

modules/swagger-codegen/src/main/resources/dart/api_client.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
part of api;
1+
part of {{pubName}}.api;
22

33
class QueryParam {
44
String name;

modules/swagger-codegen/src/main/resources/dart/auth/api_key_auth.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
part of api;
1+
part of {{pubName}}.api;
22

33
class ApiKeyAuth implements Authentication {
44

modules/swagger-codegen/src/main/resources/dart/auth/authentication.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
part of api;
1+
part of {{pubName}}.api;
22

33
abstract class Authentication {
44

modules/swagger-codegen/src/main/resources/dart/auth/http_basic_auth.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
part of api;
1+
part of {{pubName}}.api;
22

33
class HttpBasicAuth implements Authentication {
44

modules/swagger-codegen/src/main/resources/dart/auth/oauth.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
part of api;
1+
part of {{pubName}}.api;
22

33
class OAuth implements Authentication {
44

0 commit comments

Comments
 (0)