1
0

In GetArticle() func removed unnecessary else {} nesting.

This commit is contained in:
Alexander Andreev 2023-09-23 04:23:33 +04:00
parent 69493f50aa
commit fbb4389065
Signed by: Arav
GPG Key ID: D22A817D95815393

View File

@ -50,7 +50,8 @@ func GetArticleMetadata() (meta []ArticleMetadata) {
func GetArticle(name string) (*article.Article, error) { func GetArticle(name string) (*article.Article, error) {
if artcl, ok := articles[name]; ok { if artcl, ok := articles[name]; ok {
return &artcl, nil return &artcl, nil
} else { }
meta, err := articlesFS.ReadFile("articles/" + name + articleMetaExtension) meta, err := articlesFS.ReadFile("articles/" + name + articleMetaExtension)
if err != nil { if err != nil {
return nil, err return nil, err
@ -70,7 +71,6 @@ func GetArticle(name string) (*article.Article, error) {
return &artcl, nil return &artcl, nil
} }
}
func init() { func init() {
entries, _ := articlesFS.ReadDir("articles") entries, _ := articlesFS.ReadDir("articles")