Add comments to constants

This commit is contained in:
Enrico Stahn 2018-02-25 00:41:46 +11:00
parent c0b2ce6bd8
commit 49a24fd68f
No known key found for this signature in database
GPG key ID: 5263621C269A50DE

View file

@ -25,7 +25,10 @@ import (
"time"
)
// PoolProcessRequestIdle defines a process that is idle.
const PoolProcessRequestIdle string = "Idle"
// PoolProcessRequestIdle defines a process that is active.
const PoolProcessRequestActive string = "Running"
var log logger