mirror of
https://github.com/fiatjaf/nak.git
synced 2025-12-08 16:48:51 +00:00
17 lines
198 B
Go
17 lines
198 B
Go
package nostrfs
|
|
|
|
import (
|
|
"fiatjaf.com/nostr"
|
|
)
|
|
|
|
func kindToExtension(kind nostr.Kind) string {
|
|
switch kind {
|
|
case 30023:
|
|
return "md"
|
|
case 30818:
|
|
return "adoc"
|
|
default:
|
|
return "txt"
|
|
}
|
|
}
|