Discover books, shows, and movies at your level. Track your progress by filling your Shelf with what you find, and share with other language learners. *No dusting required. shlf.space
at master 15 lines 277 B view raw
1package server 2 3import ( 4 "net/http" 5 6 mybooks "shlf.space/internal/views/my-books" 7) 8 9func (s *Server) MyBooks(w http.ResponseWriter, r *http.Request) { 10 user := s.oauth.GetAccountUser(r) 11 12 mybooks.MyBooksPage(mybooks.MyBooksParams{ 13 User: user, 14 }).Render(r.Context(), w) 15}