mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
15 lines
198 B
Go
15 lines
198 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
)
|
|
|
|
func init() {
|
|
log.Println("plugin init function called")
|
|
}
|
|
|
|
func Concatenate(a int, b string, c float64) string {
|
|
return fmt.Sprintf("%v_%v_%v", a, b, c)
|
|
}
|