main
1using System.Collections.Generic;
2using gorilla.migrations.data;
3
4namespace gorilla.migrations.io
5{
6 public interface FileSystem
7 {
8 IEnumerable<SqlFile> all_sql_files_from(string directory);
9 }
10}