This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" Syntax file for Avro IDL files. | |
if exists('b:current_syntax') | |
finish | |
endif | |
syn case match | |
" Delegate to JSON syntax highlighting for defaults. | |
syn include @json syntax/json.vim |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* jshint esversion: 6, node: true */ | |
'use strict'; | |
/** Sample code using the promisified service API. */ | |
const avro = require('avsc'); | |
const promisify = require('./promisify'); // See file below. | |
// A sample service with a single message. Note that this message's error type |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** The most minimal module possible. */ | |
'use strict'; | |
module.exports = require('@avro/types'); |
OlderNewer