chore(athena): remove dead exports and unused barrel file

This commit is contained in:
ismeth
2026-02-20 14:35:52 +01:00
committed by YeonGyu-Kim
parent 67850cea6f
commit 3cdac3eba6
3 changed files with 6 additions and 9 deletions
@@ -10,7 +10,7 @@ export const COUNCIL_MEMBER_KEY_PREFIX = "Council: "
/**
* Generates a stable agent registration key from a council member's name.
*/
export function getCouncilMemberAgentKey(member: CouncilMemberConfig): string {
function getCouncilMemberAgentKey(member: CouncilMemberConfig): string {
return `${COUNCIL_MEMBER_KEY_PREFIX}${member.name}`
}