This commit is contained in:
2025-07-18 09:44:45 +08:00
parent 93975b26bc
commit 72f022a727
45 changed files with 67 additions and 281 deletions

3
build/Help Executable file
View File

@@ -0,0 +1,3 @@
#! /usr/bin/bash
echo ""

12
build/Makefile Normal file
View File

@@ -0,0 +1,12 @@
.PHONY: clean help
help:
./build/Help
clean:
rm -rf $(TARGET_PATH)/*
scheduler:
cd $(SOURCE_PATH) && go build -o $(TARGET_PATH)/scheduler
all: scheduler