mirror of
https://github.com/foxcpp/maddy.git
synced 2025-04-04 21:47:40 +03:00
Root package now contains only initialization code and 'dummy' module. Each module now got its own package. Module packages are grouped by their main purpose (storage/, target/, auth/, etc). Shared code is placed in these "group" packages. Parser for module references in config is moved into config/module. Code shared by tests (mock modules, etc) is placed in testutils.
16 lines
366 B
Go
16 lines
366 B
Go
package dispatcher
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"math/rand"
|
|
)
|
|
|
|
// GenerateMsgID generates a string usable as MsgID field in module.MsgMeta.
|
|
//
|
|
// TODO: Find a better place for this function. 'dispatcher' package seems
|
|
// irrelevant.
|
|
func GenerateMsgID() (string, error) {
|
|
rawID := make([]byte, 32)
|
|
_, err := rand.Read(rawID)
|
|
return hex.EncodeToString(rawID), err
|
|
}
|