skynet_api_monitor 0.4.2

API for Skynet monitor plugin.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
SHELL = /bin/bash

.PHONY: check clean help

## check: Check code and style.
check:
	@cargo clippy -- -D clippy::all
	@cargo fmt --all -- --check

## clean: Clean all build files.
clean:
	@rm -rf $(OUTPUT_DIR)
	@cargo clean

## help: Show this help.
help: Makefile
	@echo Usage: make [command]
	@sed -n 's/^##//p' $< | column -t -s ':' |  sed -e 's/^/ /'