I'm using a string for the PID as I expect it will just be used to build a string again down the line (also, I'm a go newbie and have no idea how to do atoi() in go). Also, the default value for a missing PID is the empty string, like a missing tag - that made more sense to me than using 0.
Fixes issue #52.
I'm using a string for the PID as I expect it will just be used to build a string again down the line (also, I'm a go newbie and have no idea how to do
atoi()
in go). Also, the default value for a missing PID is the empty string, like a missing tag - that made more sense to me than using0
.