Implement a key-value store that supports the following operations:
set(key, value, ttl): Stores the key with the given value and a time-to-live (TTL) in seconds. The key should automatically expire and no longer be available after the TTL has elapsed.
get(key): Returns the value associated with the key if it has not expired; otherwise, it should return a null value or an appropriate indicator that the key does not exist.
Additional Requirements:
Your solution should be implemented in the programming language of your choice. Please ensure that the code is well-structured and includes comments where appropriate.