Files
micromdm/cmd/tools/tools.go
Victor Vrantchan 8763577922 add initial structure
The main change here is initializing micromdm.io as the module. That
allows micromdm to decouple from GitHub in the long run. It also means
I'll have to set up Go vanity URLs and move or modify the website
directory.

Other changes:
- WIP logging package
- Package id with ulid
- Tools repo
2020-06-27 22:57:10 -04:00

9 lines
146 B
Go

// +build tools
// Binary tools pins command line tools used in this repository.
package main
import (
_ "github.com/oklog/ulid/v2/cmd/ulid"
)