mirror of
https://github.com/IceWhaleTech/CasaOS.git
synced 2025-06-16 05:55:33 +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))
|
|
}
|