Hi, I'm writing a Windows Service (that is, an app that runs on bootup), and, in particular, am working on the part that should configure it.
I don't have any existing interfaces that I need to comply with (it's more-or-less greenfield) other than needing to accept incoming connections on port 443, and again, needing to run at bootup.
I've already got the installer and stuff set up, so I just have one question:
Should I mess with getting it to configure with the Windows Registry, or just use a config file? And, relatedly, should I attempt to use serde
with the Windows Registry? Does a serde backend for the registry exist? Or would it make sense to write one?