Add files via upload

This commit is contained in:
Tomáš Dvořák
2025-05-22 09:58:30 +02:00
committed by GitHub
parent f9033547ca
commit 6ee99a0679
5 changed files with 197 additions and 14 deletions
+11
View File
@@ -0,0 +1,11 @@
.PHONY: dev install
dev:
@echo "Starting development server..."
go run main.go
install:
@echo "Installing dependencies..."
go mod tidy
go get -u gopkg.in/gomail.v2
@echo "Build complete. Run with: go run main.go"