Skip to main content
Sign in
Snippets Groups Projects
Select Git revision
  • cf1f64af4ca9b9030311a473c0dd3d3975ed38d9
  • release default protected
  • more-testing
  • attempt-vax90b1
  • attempt-1
  • conversion protected
  • linux
  • v0.9.1 protected
  • v0.9.0 protected
9 results

accounts.go

Blame
  • user avatar
    Kevin Lyda authored
    cf1f64af
    History
    accounts.go 229 B
    // Package accounts manages accounts.
    package accounts
    
    import "errors"
    
    // Verify verifies that an account exists.
    func Verify(acc string) error {
    	if acc == "" {
    		return errors.New("Empty account is invalid")
    	}
    	return nil
    }