1 package sriracha 2 3 // Board types 4 const ( 5 BoardNormal = 1 6 BoardCategory = 2 7 BoardLink = 3 8 ) 9 10 // Board represents an imageboard, category or link. 11 type Board struct { 12 ID int 13 Parent int 14 Type int 15 Dir string 16 Name string 17 Description string 18 MinAccess int 19 } 20