Initial infrastructure documentation - comprehensive homelab reference

This commit is contained in:
Funky (OpenClaw)
2026-02-23 03:42:22 +00:00
commit 0682c79580
169 changed files with 63913 additions and 0 deletions

20
aider-test.py Normal file
View File

@@ -0,0 +1,20 @@
# Simple calculator functions
from typing import Union
def add(a: int, b: int) -> int:
"""Add two integers."""
return a + b
def subtract(a: int, b: int) -> int:
"""Subtract two integers."""
return a - b
def multiply(a: int, b: int) -> int:
"""Multiply two integers."""
return a * b
def divide(a: Union[int, float], b: Union[int, float]) -> Union[int, float]:
"""Divide two numbers. Raises ValueError if divisor is zero."""
if b == 0:
raise ValueError("Cannot divide by zero.")
return a / b