gopcua / opcua

Native Go OPC-UA library
MIT License
829 stars 253 forks source link

refactor(id-cmd): split up id files into multiple files #680

Open sruehl opened 11 months ago

sruehl commented 11 months ago

This PR spilts up id_gen.go into multiple files

resolves https://github.com/gopcua/opcua/issues/679

sruehl commented 10 months ago

On note on this PR. The variables enum is still to big. In plc4x I solved it with this regex ^([A-Z][a-z]*)(.*),Variable$ -> $1$2,Variable$1 https://github.com/apache/plc4x/commit/b2f3acb97b3b209b0434c2441bdb09a9eee641b6. I could extend this PR to split them even more up like I did in the plc4x commit.