13 lines
193 B
Go
13 lines
193 B
Go
|
|
package rabbitmq_amqp
|
||
|
|
|
||
|
|
import (
|
||
|
|
"fmt"
|
||
|
|
"strconv"
|
||
|
|
"time"
|
||
|
|
)
|
||
|
|
|
||
|
|
func generateNameWithDateTime(name string) string {
|
||
|
|
return fmt.Sprintf("%s_%s", name, strconv.FormatInt(time.Now().Unix(), 10))
|
||
|
|
|
||
|
|
}
|