Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
87 changes: 0 additions & 87 deletions fpaste/fpaste.go

This file was deleted.

3 changes: 0 additions & 3 deletions go-paste.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ package main

import (
"errors"
"github.com/bearbin/go-paste/fpaste"
"github.com/bearbin/go-paste/pastebin"
"github.com/codegangsta/cli"
"io/ioutil"
Expand Down Expand Up @@ -89,8 +88,6 @@ func convertService(srv string) (service, error) {
switch {
case srv == "pastebin" || srv == "pastebin.com" || srv == "http://pastebin.com":
return pastebin.Pastebin{}, nil
case srv == "fpaste" || srv == "fpaste.org" || srv == "http://fpaste.org":
return fpaste.Fpaste{}, nil
}
return nil, errUnknownService
}