Skip to content

Commit

Permalink
LotusRpc
Browse files Browse the repository at this point in the history
* Fixed package name for version info
  • Loading branch information
tzijnge committed Jan 20, 2025
1 parent d3ba145 commit 9f0b05b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lrpc/codegen/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,6 @@ def lrpc_var_includes(var: LrpcVar) -> Set[str]:


def write_file_banner(file: CppFile) -> None:
v = version("lrpc")
v = version("lotusrpc")
file.write(f"// This file has been generated with LRPC version {v}")
file.newline()
2 changes: 1 addition & 1 deletion src/lrpc/codegen/meta.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ def __write_includes(self) -> None:

def __write_attributes(self) -> None:
with self.__file.block("namespace meta"):
lrpc_version = version("lrpc")
lrpc_version = version("lotusrpc")
lrpc_version_string = f'"{lrpc_version}"'

self.__file.write(f"constexpr etl::string_view LrpcVersion {{{lrpc_version_string}}};")
Expand Down

0 comments on commit 9f0b05b

Please sign in to comment.