amenzhinsky / dbus-codegen-go

D-Bus code-generation for golang
MIT License
16 stars 14 forks source link

On -server-only almost no signal related types or methods are created #7

Open kmpm opened 3 years ago

kmpm commented 3 years ago

When generating code with -server-only I would expect to see all that the server needs in the code. I noticed that the README says Emitting signals is done reusing the same structures generated for the client side so I solved it by removing -server-only it generated the necessary signal parts together with some client stuff I didn't need.

It's no biggie but worth noticing.