Adds a new resource to the opened database.
(self, path, content)
| 155 | self.__send_input(8, name, content) |
| 156 | |
| 157 | def add(self, path, content): |
| 158 | """Adds a new resource to the opened database.""" |
| 159 | self.__send_input(9, path, content) |
| 160 | |
| 161 | def replace(self, path, content): |
| 162 | """Replaces a resource with the specified input.""" |
nothing calls this directly
no test coverage detected