main
1using System.Collections;
2
3namespace jive
4{
5  public interface ScopedStorage
6  {
7    IDictionary provide_storage();
8  }
9}