You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Calling protojl on it generates the following code:
# Autogenerated using ProtoBuf.jl v1.0.16 on 2024-12-31T21:39:23.141# original file: /Systems/test.proto (proto3 syntax)module test_pb
import ProtoBuf as PB
using ProtoBuf: OneOf
using ProtoBuf.EnumX:@enumxexport MyService
#TODO: SERVICE# MyServiceend# module
Since MyService is exported but never defined, it will cause linters that are checking for undefined exports to fail.
The text was updated successfully, but these errors were encountered:
Given a proto file:
Calling
protojl
on it generates the following code:Since
MyService
is exported but never defined, it will cause linters that are checking for undefined exports to fail.The text was updated successfully, but these errors were encountered: