Files
darkstorm-server/internal/darkstorm_backend/darkstorm_test.go
T
Caleb Gardner e3af23873f Added counting
Changed Count post URL
Archiving crashes now removes crashes that match the archive
2024-06-12 02:17:26 -05:00

24 lines
312 B
Go

package darkstorm
import (
"fmt"
"testing"
"time"
"github.com/google/uuid"
)
func TestStuff(t *testing.T) {
for i := 0; i < 50; i++ {
go func() {
id, err := uuid.NewV7()
if err != nil {
fmt.Println(err)
}
fmt.Println(id.String())
}()
}
time.Sleep(3 * time.Second)
t.Fatal("end")
}