# File lib/fog/volume/openstack/requests/list_snapshots.rb, line 30
        def list_snapshots(_detailed = true, _options = {})
          response = Excon::Response.new
          response.status = 200
          response.body = {
            'snapshots' => [get_snapshot_details.body["snapshot"]]
          }
          response
        end