1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-19 04:50:02 +02:00

Initial commit

This commit is contained in:
Henrik Hautakoski 2022-01-17 12:00:14 +01:00
commit 164d0a4153
No known key found for this signature in database
GPG key ID: 608414D93E862CCD
11 changed files with 662 additions and 0 deletions

11
Makefile Normal file
View file

@ -0,0 +1,11 @@
GO=go
PROGRAM=build/eosio-ship-trace-reader
.PHONY: $(PROGRAM)
$(PROGRAM) :
$(GO) build -o $@
clean :
$(RM) -fr build