yitsushi / totp-cli

Authy/Google Authenticator like TOTP CLI tool written in Go.

Home Page:http://yitsushi.github.io/totp-cli/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Replace empty struct references with nil

yitsushi opened this issue · comments

for example:

-	return &Namespace{}, NotFoundError{Type: "namespace", Name: name}
+	return nil, NotFoundError{Type: "namespace", Name: name}