mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-12-03 17:30:18 +01:00
34 lines
613 B
Go
34 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)
|
||
|
}
|
||
|
}
|