mirror of
https://github.com/studiokaiji/nostr-webhost.git
synced 2025-12-17 14:54:31 +01:00
15 lines
349 B
Go
15 lines
349 B
Go
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
|
|
}
|
|
}
|