1use seamapi_rs::Seam;
2
3fn main() {
4 let seamapi = Seam::new(None, None).unwrap();
5
6 let list_of_devices = seamapi.devices().list().unwrap();
7
8 let locks = seamapi.locks().list().unwrap();
9
10 println!("{:?}\n{:?}", list_of_devices, locks);
11}