MCPcopy Index your code
hub / github.com/CodebuffAI/codebuff / Greeting

Class Greeting

packages/code-map/__tests__/test-langs/test.py:11–16  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

9
10# Class implementation
11class Greeting(Greeter):
12 def __init__(self, prefix: str):
13 self.prefix = prefix
14
15 def greet(self, name: str) -> str:
16 return f'{self.prefix}, {name}!'
17
18# Function
19def print_greeting(greeter: Greeter, name: str):

Callers 1

test.pyFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected