Techtonic Core is a fundamental component of TDK (Techtonic Development Kit), designed to provide essential utilities and libraries for building Linux applications in Go. It serves as the foundation for the Techtonic ecosystem, offering various modules for common development needs.
A flexible logging system built on top of uber-zap, providing structured logging capabilities with support for different output formats.
logger := seismic.NewLogger("console")
logger.Info("Hello, World!", "key", "value")A comprehensive error handling system (Coming soon)
YAML configuration management system (Coming soon)
Custom configuration format handler (Coming soon)
- Filesystem operations
- Network utilities
- And more...
go get gitlab.com/techtonic-team/tdk/techtonic-corepackage main
import "gitlab.com/techtonic-team/tdk/techtonic-core/pkg/logging/seismic"
func main() {
logger := seismic.NewLogger("console")
defer logger.Sync()
logger.Info("Hello, World!", "greeting", "Hello", "target", "World")
}techtonic-core/
├── pkg/
│ ├── logging/
│ │ └── seismic/ # Logging system
│ ├── errors/ # Future error handling
│ └── ...
└── examples/
└── hello/ # Example applications
- Go 1.22 or higher
- Linux operating system
TDK is licensed under the MIT License. See the LICENSE file for details.