1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// `header::header::Header` and friends: the inner module is an implementation
// detail that the parent re-exports.
// Every public item is documented, and stays that way: an undocumented one is a
// build failure rather than a warning nobody reads.
/// Reading and writing FITS files on the filesystem.
/// The header and data units a FITS file is made of.
pub use Error;
pub use Fits;
pub use FitsSlice;
pub use Result;
pub use SliceAsciiTableHDU;
pub use SliceBinTableHDU;
pub use SliceImageHDU;