opencodesearch 0.1.0

Largescale MCP server for codebase search with background indexing and automatic updating to git commits in rust
1
2
3
4
5
6
7
8
9
"""Example python module 2 for indexing tests."""

def mutate_obj_2(obj):
    obj = obj + 2
    return obj

class Worker2:
    def apply(self, value):
        return mutate_obj_2(value)