consts_gen_pbentity_template.go 665 B

1234567891011121314151617181920212223
  1. // Copyright GoFrame gf Author(https://goframe.org). All Rights Reserved.
  2. //
  3. // This Source Code Form is subject to the terms of the MIT License.
  4. // If a copy of the MIT was not distributed with this file,
  5. // You can obtain one at https://github.com/gogf/gf.
  6. package consts
  7. const TemplatePbEntityMessageContent = `
  8. // ==========================================================================
  9. // Code generated and maintained by GoFrame CLI tool. DO NOT EDIT.
  10. // ==========================================================================
  11. syntax = "proto3";
  12. package {PackageName};
  13. option go_package = "{GoPackage}";
  14. {OptionContent}
  15. {Imports}
  16. {EntityMessage}
  17. `