feat: Add check service (WIP)

This commit is contained in:
2025-07-21 01:59:03 +03:00
parent 691d1e7275
commit 87defbf391
9 changed files with 219 additions and 7 deletions

5
pkg/slice/chunk.go Normal file
View File

@@ -0,0 +1,5 @@
package slice
func ChunkSlice[T any](slice []T, chunkSize int) [][]T {
}