This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

1use crate::Region; 2 3impl Region { 4 pub fn clip_path_id(&self) -> String { 5 format!("clip-{}-{}", self.start, self.end) 6 } 7}