Rename base package to git.monogon.dev/source/smalltown.git

This ensures that the package is go get-able in our managed environment,
which has SSH configs for git.monogon.dev by default.

go knows that it's a Git repo by matching on ".git"
(see: https://golang.org/cmd/go/#hdr-Remote_import_paths).

The package name is a bit more unwieldy than it needs to be, so maybe
we should add go-import metadata to git.monogon.dev at some point
(which is not straight-forward, since Go does not understand SRV records,
so this needs to be added to the Phabricator web server).

Also refreshed all generated files and go.mod/go.sum.

Test Plan:
    make cmd/mkimage/mkimage
    make cmd/init/init

X-Origin-Diff: phab/D193
GitOrigin-RevId: 766325ccd9a51d04eba0e49269c530c520444193
diff --git a/internal/storage/data.go b/internal/storage/data.go
index 2ffd180..618f68f 100644
--- a/internal/storage/data.go
+++ b/internal/storage/data.go
@@ -18,12 +18,12 @@
 
 import (
 	"fmt"
+	"git.monogon.dev/source/smalltown.git/internal/common"
+	"git.monogon.dev/source/smalltown.git/pkg/tpm"
 	"io/ioutil"
 	"os"
 	"os/exec"
 	"path/filepath"
-	"smalltown/internal/common"
-	"smalltown/pkg/tpm"
 	"sync"
 
 	"go.uber.org/zap"