mirror of
https://git.vectorsigma.ru/public/CasaOS.git
synced 2026-07-29 13:47:37 +00:00
11 lines
122 B
Go
11 lines
122 B
Go
package random
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
)
|
|
|
|
func TestRandomString(t *testing.T) {
|
|
fmt.Println(RandomString(6, true))
|
|
}
|