GetCreatedAt returns the node's creation time
()
| 69 | |
| 70 | // GetCreatedAt returns the node's creation time |
| 71 | func (n *Node) GetCreatedAt() time.Time { |
| 72 | n.mu.RLock() |
| 73 | defer n.mu.RUnlock() |
| 74 | return n.CreatedAt |
| 75 | } |
| 76 | |
| 77 | // GetUpdatedAt returns the node's update time |
| 78 | func (n *Node) GetUpdatedAt() time.Time { |
nothing calls this directly
no outgoing calls
no test coverage detected