CC := go
NAME := server
OUT := bin/

all: main.go types.go
	$(CC) build -o $(OUT)$(NAME) $^

clean:
	$(RM) -r $(OUT)