go-chatgpt
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

16 righe
234 B

  1. package gogpt
  2. import (
  3. "encoding/json"
  4. )
  5. type marshaller interface {
  6. marshal(value any) ([]byte, error)
  7. }
  8. type jsonMarshaller struct{}
  9. func (jm *jsonMarshaller) marshal(value any) ([]byte, error) {
  10. return json.Marshal(value)
  11. }