Skip to content

Latest commit

 

History

History
80 lines (57 loc) · 2.83 KB

File metadata and controls

80 lines (57 loc) · 2.83 KB

📚 Official Resources

Taubyte Documentation

Core Resources

Getting Started

SDK Packages

Community

Quick Reference

Import Statement

import (
    "github.com/taubyte/go-sdk/database"
    "github.com/taubyte/go-sdk/event"
    pubsub "github.com/taubyte/go-sdk/pubsub/node"
    "github.com/taubyte/go-sdk/storage"
    http "github.com/taubyte/go-sdk/http/event"
)

Function Export

//export functionName
func functionName(e event.Event) uint32 {
    // Your logic here
    return 0
}

CORS Headers

📚 CORS Setup: See utilities/01-ESSENTIAL-UTILITIES.md for CORS implementation

Support

Getting Help

  1. Check the documentation - Most questions are answered in the official docs
  2. Join Discord - Real-time community support
  3. GitHub Issues - Report bugs and request features
  4. GitHub Discussions - Ask questions and share ideas

Common Issues

📚 Back to Guide