CSBiology / OBO.NET

An OBO file format parser, written in F#.
MIT License
3 stars 1 forks source link

Better structure (Same-name type and module) #1

Closed omaus closed 1 year ago

omaus commented 1 year ago

There are some rather ugly design implementations, like: FsOboParser.OboTerm.OboTerm because the module OboTerm inhabits the type OboTerm. Do rather this: type OboTerm with all members needed and same-name module (module OboTerm) with all the related functions.