Is it possible to run authoritative multiplayer code without using plugins?

I want to create authoritative multiplayer module on Windows, is it possible to create a module as normal Go code and build it normally in Windows? Without having to create a .so?

Hello @localhost,

If you use the Lua or JavaScript runtimes you won’t need to compile a Go module to write the authoritative match handler functions.

Best.

Hello @localhost :smiling_face_with_three_hearts:

Yes; you can use regular Go code to develop an official multiplayer module for Windows. It can produce programs for Windows without the need for shared libraries.
You may develop your multiplayer server logic in Go; take use of its collaboration features; and run it on Windows.