blob: 75e1b0504c3c01c53a162f54a1dc719cc703cf71 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# frozen_string_literal: true
require 'singleton'
class FamilyTreeManager
include Singleton
def initialize
@family_members = {}
end
def add_child(*params); end
def query_hierarchy(*params); end
end
|