You've already forked openaccounting-server
forked from cybercinch/openaccounting-server
Updates AWS SDK and removes Blazer B2 dependency in favor of unified S3-compatible approach. Includes configuration examples and documentation. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
40 lines
565 B
Go
40 lines
565 B
Go
package ini
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
var (
|
|
equalOp = []rune("=")
|
|
equalColonOp = []rune(":")
|
|
)
|
|
|
|
func isOp(b []rune) bool {
|
|
if len(b) == 0 {
|
|
return false
|
|
}
|
|
|
|
switch b[0] {
|
|
case '=':
|
|
return true
|
|
case ':':
|
|
return true
|
|
default:
|
|
return false
|
|
}
|
|
}
|
|
|
|
func newOpToken(b []rune) (Token, int, error) {
|
|
tok := Token{}
|
|
|
|
switch b[0] {
|
|
case '=':
|
|
tok = newToken(TokenOp, equalOp, NoneType)
|
|
case ':':
|
|
tok = newToken(TokenOp, equalColonOp, NoneType)
|
|
default:
|
|
return tok, 0, NewParseError(fmt.Sprintf("unexpected op type, %v", b[0]))
|
|
}
|
|
return tok, 1, nil
|
|
}
|