example_router_srv.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /* _
  2. * ___ __ _ __ _ _ _(_)
  3. * / __|/ _` |/ _` | | | | |
  4. * \__ \ (_| | (_| | |_| | |
  5. * |___/\__,_|\__, |\__,_|_|
  6. * |___/
  7. *
  8. * –– cross-platform library which helps to develop web servers or frameworks.
  9. *
  10. * Copyright (c) 2016-2018 Silvio Clecio <[email protected]>
  11. *
  12. * This file is part of Sagui library.
  13. *
  14. * Sagui library is free software: you can redistribute it and/or modify
  15. * it under the terms of the GNU Lesser General Public License as published by
  16. * the Free Software Foundation, either version 3 of the License, or
  17. * (at your option) any later version.
  18. *
  19. * Sagui library is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU Lesser General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU Lesser General Public License
  25. * along with Sagui library. If not, see <http://www.gnu.org/licenses/>.
  26. */
  27. #ifndef EXAMPLE_ROUTER_SRV_H
  28. #define EXAMPLE_ROUTER_SRV_H
  29. /**
  30. * \example example_router_srv.c
  31. * Simple example showing how to use the router feature in a HTTP server.
  32. */
  33. #endif /* EXAMPLE_ROUTER_SRV_H */