Major integrations and fixes: - Added BACKBEAT SDK integration for P2P operation timing - Implemented beat-aware status tracking for distributed operations - Added Docker secrets support for secure license management - Resolved KACHING license validation via HTTPS/TLS - Updated docker-compose configuration for clean stack deployment - Disabled rollback policies to prevent deployment failures - Added license credential storage (CHORUS-DEV-MULTI-001) Technical improvements: - BACKBEAT P2P operation tracking with phase management - Enhanced configuration system with file-based secrets - Improved error handling for license validation - Clean separation of KACHING and CHORUS deployment stacks 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
70 lines
916 B
Go
70 lines
916 B
Go
package jsoniter
|
|
|
|
type nilAny struct {
|
|
baseAny
|
|
}
|
|
|
|
func (any *nilAny) LastError() error {
|
|
return nil
|
|
}
|
|
|
|
func (any *nilAny) ValueType() ValueType {
|
|
return NilValue
|
|
}
|
|
|
|
func (any *nilAny) MustBeValid() Any {
|
|
return any
|
|
}
|
|
|
|
func (any *nilAny) ToBool() bool {
|
|
return false
|
|
}
|
|
|
|
func (any *nilAny) ToInt() int {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToInt32() int32 {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToInt64() int64 {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToUint() uint {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToUint32() uint32 {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToUint64() uint64 {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToFloat32() float32 {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToFloat64() float64 {
|
|
return 0
|
|
}
|
|
|
|
func (any *nilAny) ToString() string {
|
|
return ""
|
|
}
|
|
|
|
func (any *nilAny) WriteTo(stream *Stream) {
|
|
stream.WriteNil()
|
|
}
|
|
|
|
func (any *nilAny) Parse() *Iterator {
|
|
return nil
|
|
}
|
|
|
|
func (any *nilAny) GetInterface() interface{} {
|
|
return nil
|
|
}
|