feat: first init

This commit is contained in:
Cereska
2026-03-19 08:32:09 -04:00
parent 00e63630e2
commit 7f8db9e3a8
4 changed files with 17 additions and 0 deletions

1
cmd/main.go Normal file
View File

@@ -0,0 +1 @@
package main

12
examples/meld.yml Normal file
View File

@@ -0,0 +1,12 @@
version: "1"
pools:
- name: "ranked_3v3"
size: 6 # 3 vs 3
strategy: "sliding_window"
rules:
- attribute: "elo"
max_diff: 100
relax_rate: 10 # Increase allowed diff by 10 every 5 seconds
- tag: "region"
match_exact: true

3
go.mod Normal file
View File

@@ -0,0 +1,3 @@
module git.darwincereska.dev/darwincereska/meld
go 1.26.1

1
pkg/config/meld/meld.go Normal file
View File

@@ -0,0 +1 @@
package meld