mirror of
https://github.com/drewcassidy/yaclog.git
synced 2024-09-01 14:58:58 +00:00
12 lines
256 B
Python
12 lines
256 B
Python
import os
|
|
from yaclog.changelog import Changelog
|
|
|
|
|
|
def read(path):
|
|
"""
|
|
Create a new Changelog object from the given path
|
|
:param path: a path to a markdown changelog file
|
|
:return: a parsed Changelog object
|
|
"""
|
|
return Changelog(path)
|