Skip to content

Commit

Permalink
msggen: Move rpc-model generator
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikDeSmedt authored and cdecker committed May 16, 2024
1 parent d59029b commit 0251b45
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/msggen/msggen/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from pathlib import Path
from msggen.gen.grpc import GrpcGenerator, GrpcConverterGenerator, GrpcUnconverterGenerator, GrpcServerGenerator
from msggen.gen.grpc2py import Grpc2PyGenerator
from msggen.gen.rust import RustGenerator
from msggen.gen.rpc.rust import RustGenerator
from msggen.gen.generator import GeneratorChain
from msggen.utils import load_jsonrpc_service, combine_schemas
import logging
Expand Down
2 changes: 1 addition & 1 deletion contrib/msggen/msggen/gen/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .generator import IGenerator, GeneratorChain # noqa
from .grpc import GrpcGenerator, GrpcConverterGenerator, GrpcUnconverterGenerator, GrpcServerGenerator # noqa
from .rust import RustGenerator # noqa
from .rpc.rust import RustGenerator # noqa
File renamed without changes.

0 comments on commit 0251b45

Please sign in to comment.