diff --git a/src/libs/routes/school.js b/src/libs/routes/school.js
index 0c35609fa5dc0eca9b4e0c7387dfe2c52ffcceb1..9ca64a2a938f90c59cef276391a74812fd654437 100644
--- a/src/libs/routes/school.js
+++ b/src/libs/routes/school.js
@@ -64,6 +64,14 @@ schoolApp.get('/building_school', (req, res, next) => {
     next();
 }, response('building_school'));
 
+schoolApp.get('/library', (req, res, next) => {
+    req.result = [
+        {id: 0, name: 'Não'},
+        {id: 1, name: 'Sim'}
+    ];
+    next();
+}, response('library'));
+
 schoolApp.get('/informatics_lab', (req, res, next) => {
     req.result = [
         {id: 0, name: 'Não'},