[tilo][resultstore] Put all code into a single pkg

Having different package names makes writing user-level
code pretty annoying.  Ideally we'd be able to separate
the code into different subdirectories, the way it was
previously, but Go doesn't let us use the same package
name in each of those subdirectories. Putting all files
into one package and directory is fine.

Notable changes:
* All tests now live in the `resultstore_test` package
    so they may exercise only the public API.
* service.New is now resultstore.NewService
* service.TestBed is now resultstore_test.ServiceTestBed
* clients.TestBed is now resultstore_test.ClientTestBed

IN-699 #comment

Change-Id: I7670480c2a5824814156eb2d2798705dd3f07829
8 files changed
tree: 40c697311d636b5b7544185e89c1e9d989943d33
  1. botanist/
  2. cmd/
  3. fastboot/
  4. fuchsia/
  5. fxctx/
  6. fxtesting/
  7. fxtime/
  8. gerrit-policy/
  9. netboot/
  10. pdu/
  11. qemu/
  12. retry/
  13. secrets/
  14. serial/
  15. telnet/
  16. tftp/
  17. tilo/
  18. tools/
  19. .gitignore
  20. AUTHORS
  21. Gopkg.lock
  22. Gopkg.toml
  23. LICENSE
  24. MAINTAINERS
  25. manifest
  26. PATENTS
  27. README.md
  28. testsharder
README.md

infra

This repo contains tools and config files necessary to run infrastructure related to builds, code review, version control, and continuous integrations.

In order to build the Go code, you must clone this repo into an appropriately named directory. This should do the trick:

REPO=fuchsia.googlesource.com/infra/infra
git clone https://${REPO} $(go env GOPATH)/src/${REPO}