- Agent roles and coordination features - Chat API integration testing - New configuration and workspace management 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
13 lines
155 B
Go
13 lines
155 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package log
|
|
|
|
import (
|
|
"path/filepath"
|
|
)
|
|
|
|
func normalizePath(p string) (string, error) {
|
|
return filepath.Abs(p)
|
|
}
|