mirror of
https://github.com/lunchcat/sif.git
synced 2025-12-25 12:24:43 -08:00
11 lines
113 B
Go
11 lines
113 B
Go
package utils
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func ReturnApiOutput() {
|
|
const data = `{"key": "value"}`
|
|
fmt.Println(data)
|
|
}
|