Skip to content

Commit

Permalink
fixing grpc version due to breakage (#471)
Browse files Browse the repository at this point in the history
  • Loading branch information
Vibaswan authored Aug 30, 2024
1 parent 443ebab commit dc1afd4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions openapiart/openapiartgo.py
Original file line number Diff line number Diff line change
Expand Up @@ -226,6 +226,12 @@ def _write_mod_file(self):
self._write("module {}".format(self._go_sdk_package_dir))
self._write()
self._write("go 1.16")
self._write()
self._write(
"""require (
google.golang.org/grpc v1.65.0
)"""
)
self._close_fp()

def _write_go_file(self):
Expand Down

0 comments on commit dc1afd4

Please sign in to comment.