No description
Find a file
Dirk Hoyer 02e2019e2c fix: Update URLs to use correct ixtaat.com domains
Part of comprehensive URL standardization across IXT codebase.
2025-11-02 16:08:39 +01:00
sdk Initial commit: IXT Go SDK 2025-09-28 12:13:08 +02:00
go.mod Initial commit: IXT Go SDK 2025-09-28 12:13:08 +02:00
LICENSE feat(sdk-go): Add MIT license and update documentation 2025-10-23 08:38:46 +02:00
README.md fix: Update URLs to use correct ixtaat.com domains 2025-11-02 16:08:39 +01:00

IXT SDK for Go

Official Go SDK for developing IXT Framework modules.

Installation

go get git.h-dv.de/h-dv/ixt-sdk-go

Quick Start

package main

import (
    "context"
    "git.h-dv.de/h-dv/ixt-sdk-go/sdk"
)

type MyModule struct {
    sdk.BaseModule
}

func (m *MyModule) Init(ctx context.Context) error {
    // Initialize module
    return nil
}

func (m *MyModule) HandleMessage(msg sdk.Message) error {
    // Handle incoming messages
    return nil
}

License

MIT License - see LICENSE file for details.

This SDK is fully open source and can be used in any project without restrictions.