Skip to content

Commit

Permalink
GetResponseContentを実装
Browse files Browse the repository at this point in the history
  • Loading branch information
studiokaiji committed Nov 10, 2023
1 parent 3597297 commit 7b54bda
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions hostr/cmd/tools/getResponseContent.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
package tools

import (
"encoding/base64"
)

func GetResponseContent(eventContent string, isTextFile bool) ([]byte, error) {
if isTextFile {
// NIP-95ファイル(Text File)の場合はbase64エンコードされているのでdecodeする
return base64.StdEncoding.DecodeString(eventContent)
} else {
return []byte(eventContent), nil
}
}

0 comments on commit 7b54bda

Please sign in to comment.