This repository contains the Sign Service.
From the repo base directory, run the following command
# To build
go build .
# To run the server
./signature_service
README.md
- the first file you have to read for this repositorygo.mod
golang's module file that stores exact version of the dependencies. It is often accompanied bygo.sum
which stores the exact version of the dependencies'.main.go
- the entry point to our service.config/
directory stores the business logic for the config API.config.json
is present in this directory where port and keypair is present.signature/
directory stores the business logic for the signature API.transaction/
directory stores the business logic for the transaction API.
- macOS Mojave Version 10.14.6
- Go Version 1.14