<!-- Please follow the issue template below for bug reports and feature requests. Also please indicate in the issue title which language/library is concerned. Eg: [JAVA] Bug generating foo with bar --> ##### Description Go code generated by swagger-codegen has a line with the following comment: * Generated by: Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) This comment does not match the pattern for generated code in go: ^// Code generated .* DO NOT EDIT\.$ Described here https://pkg.go.dev/cmd/go#hdr-Generate_Go_files_by_processing_source ##### Swagger-codegen version 3.0.54 <!-- which version of swagger-codegen are you using, is it a regression? --> ##### Swagger declaration file content or url <!-- if it is a bug, a json or yaml that produces it. If you post the code inline, please wrap it with ```yaml (here your code) ``` (for YAML code) or ```json (here your code) ``` (for JSON code), so it becomes more readable. If it is longer than about ten lines, please create a Gist (https://gist.github.com) or upload it somewhere else and link it here. --> ##### Command line used for generation <!-- including the language, libraries and various options --> swagger-codegen generate -i swagger.yaml -l go ##### Steps to reproduce <!-- unambiguous set of steps to reproduce the bug.--> ##### Related issues/PRs <!-- has a similar issue/PR been reported/opened before? Please do a search in https://github.com/swagger-api/swagger-codegen/issues?utf8=%E2%9C%93&q=is%3Aissue%20 --> This PR fixes the issue https://github.com/swagger-api/swagger-codegen/pull/12357 ##### Suggest a fix/enhancement <!-- if you can't fix the bug yourself, perhaps you can point to what might be causing the problem (line of code or commit), or simply make a suggestion --> The fix could be to change the line to the following // Code generated by Swagger Codegen (https://github.com/swagger-api/swagger-codegen.git) DO NOT EDIT.