mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-12-03 09:20:24 +01:00
cb6e5cb0c7
* use dep for vendoring * lets encrypt * moved web to transfer.sh-web repo * single command install * added first tests
33 lines
613 B
Go
33 lines
613 B
Go
// Copyright 2013 The Go Authors. All rights reserved.
|
|
//
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file or at
|
|
// https://developers.google.com/open-source/licenses/bsd.
|
|
|
|
package main
|
|
|
|
import (
|
|
"github.com/golang/gddo/database"
|
|
"log"
|
|
"os"
|
|
)
|
|
|
|
var blockCommand = &command{
|
|
name: "block",
|
|
run: block,
|
|
usage: "block path",
|
|
}
|
|
|
|
func block(c *command) {
|
|
if len(c.flag.Args()) != 1 {
|
|
c.printUsage()
|
|
os.Exit(1)
|
|
}
|
|
db, err := database.New()
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
if err := db.Block(c.flag.Args()[0]); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|