Skip to content

Instantly share code, notes, and snippets.

@breadchris
Created July 16, 2025 03:38
Show Gist options
  • Save breadchris/95464f1b182a0caadd926eabd025b701 to your computer and use it in GitHub Desktop.
Save breadchris/95464f1b182a0caadd926eabd025b701 to your computer and use it in GitHub Desktop.
go json api
func CreateTodo(req CreateTodoRequest) (CreateTodoResponse, error) {
// Implementation would go here
return CreateTodoResponse{}, nil
}
import { CreateTodo, ListTodos, Todo, CreateTodoRequest } from './api';
const response = await CreateTodo({
title: "Learn TypeScript"
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment