StringID creates a new string request identifier.
(s string)
| 80 | |
| 81 | // StringID creates a new string request identifier. |
| 82 | func StringID(s string) ID { return ID{value: s} } |
| 83 | |
| 84 | // Int64ID creates a new integer request identifier. |
| 85 | func Int64ID(i int64) ID { return ID{value: i} } |