No description
|
|
||
|---|---|---|
| sdk | ||
| go.mod | ||
| LICENSE | ||
| README.md | ||
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.