16 lines
278 B
Go
16 lines
278 B
Go
package status
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
)
|
|
|
|
type ClaudeChecker struct{}
|
|
|
|
func NewClaudeChecker() *ClaudeChecker {
|
|
return &ClaudeChecker{}
|
|
}
|
|
|
|
func (c *ClaudeChecker) Check(ctx context.Context) (*UsageStatus, error) {
|
|
return nil, fmt.Errorf("claude status not implemented")
|
|
}
|