moved ysv -> vain
This commit is contained in:
parent
b3585cbc96
commit
b7ef100a2c
@ -6,7 +6,7 @@ import (
|
||||
"net/http"
|
||||
"os"
|
||||
|
||||
"mcquay.me/ysv"
|
||||
"mcquay.me/vain"
|
||||
|
||||
"github.com/kelseyhightower/envconfig"
|
||||
)
|
||||
@ -45,7 +45,7 @@ func main() {
|
||||
}
|
||||
log.Printf("serving at: http://%s:%d/", hostname, c.Port)
|
||||
sm := http.NewServeMux()
|
||||
ysv.NewServer(sm)
|
||||
vain.NewServer(sm)
|
||||
addr := fmt.Sprintf(":%d", c.Port)
|
||||
if err := http.ListenAndServe(addr, sm); err != nil {
|
||||
log.Printf("problem with http server: %v", err)
|
||||
|
4
doc.go
4
doc.go
@ -1,2 +1,2 @@
|
||||
// package ysv implements a vanity service for use by the the go tool
|
||||
package ysv
|
||||
// package vain implements a vanity service for use by the the go tool
|
||||
package vain
|
||||
|
@ -1,10 +1,10 @@
|
||||
# ysv
|
||||
# vain
|
||||
|
||||
`ysvd` is a vanity url server for use by the `go` tool.
|
||||
|
||||
## installation
|
||||
|
||||
$ go get mcquay.me/ysv/cmd/ysvd
|
||||
$ go get mcquay.me/vain/cmd/ysvd
|
||||
|
||||
## running server
|
||||
|
||||
|
@ -17,15 +17,15 @@ POST /v0/package/
|
||||
A sample json object:
|
||||
|
||||
{
|
||||
"path": "mcquay.me/ysv",
|
||||
"repo": "https://s.mcquay.me/sm/ysv"
|
||||
"path": "mcquay.me/vain",
|
||||
"repo": "https://s.mcquay.me/sm/vain"
|
||||
}
|
||||
|
||||
Naming
|
||||
|
||||
ysv stands for You're so Vain, the song by Carly Simon.
|
||||
the "ysv" in ysvd stands for You're so Vain, the song by Carly Simon.
|
||||
*/
|
||||
package ysv
|
||||
package vain
|
||||
|
||||
import "fmt"
|
||||
|
@ -1,4 +1,4 @@
|
||||
package ysv
|
||||
package vain
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
@ -31,7 +31,7 @@ func TestVcsStrings(t *testing.T) {
|
||||
}
|
||||
for _, test := range tests {
|
||||
if test.got != test.want {
|
||||
t.Errorf("incorrect conversion of ysv.Vcs -> string; got %q, want %q", test.got, test.want)
|
||||
t.Errorf("incorrect conversion of vain.Vcs -> string; got %q, want %q", test.got, test.want)
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user