Package jp.cafebabe.kunai.source.factories

This package includes classes related with data source factories. Typical usage is:
 Path path = Paths.get("some/data/source/path");
 DataSourceFactory factory = DefaultDataSourceFactory();
 try(DataSource source = factory.build(path)){
     source.stream()
         .forEach(entry ->
             // some operation
         );
 }
Author:
Haruaki Tamada